diff options
author | IronClawTrem <louie.nutman@gmail.com> | 2020-06-02 18:42:21 +0100 |
---|---|---|
committer | IronClawTrem <louie.nutman@gmail.com> | 2020-06-02 18:42:21 +0100 |
commit | d47d4eb7b71a77d456079511dbc2db4e91e289da (patch) | |
tree | 3281479f185f69cd2d9bfb2465484b78d517e00e /GNUmakefile | |
parent | 06fc3ac48c382ea41a28ce425fe130c7541b892f (diff) |
enable debugging symbols in makefile
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile index ee68145..46e3112 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -184,7 +184,7 @@ ifneq (,$(findstring "$(PLATFORM)", "linux" "gnu_kfreebsd" "kfreebsd-gnu")) endif BASE_CFLAGS = -Wall -fno-strict-aliasing -Wimplicit -Wstrict-prototypes \ - -pipe -DUSE_ICON + -pipe -DUSE_ICON -g3 OPTIMIZEVM = -O3 -funroll-loops -fomit-frame-pointer OPTIMIZE = $(OPTIMIZEVM) -ffast-math |