From 2f2cb0e605d353d861047b1f6c21901d7ad58f55 Mon Sep 17 00:00:00 2001 From: sawinglogz <3787776-sawinglogz@users.noreply.gitlab.com> Date: Sat, 3 Aug 2019 15:09:41 -0500 Subject: [PATCH] Add debug GUI build to track down crashes. --- oscar/oscar.pro | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/oscar/oscar.pro b/oscar/oscar.pro index 990dd9bb..b03eff57 100644 --- a/oscar/oscar.pro +++ b/oscar/oscar.pro @@ -448,6 +448,15 @@ DISTFILES += help/default.css \ help/index.qhcp } +# Create a debug GUI build by adding "CONFIG+=debug" to your qmake command +debug { + !win32 { # add memory checking on Linux and macOS debug builds + QMAKE_CFLAGS += -g -Werror -fsanitize=address -fno-omit-frame-pointer -fno-common -fsanitize-address-use-after-scope + QMAKE_CXXFLAGS += -g -Werror -fsanitize=address -fno-omit-frame-pointer -fno-common -fsanitize-address-use-after-scope + QMAKE_LFLAGS += -fsanitize=address + } +} + # Turn on unit testing by adding "CONFIG+=test" to your qmake command test { TARGET = test