diff options
author | Roland Reichwein <mail@reichwein.it> | 2021-02-08 18:21:16 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2021-02-08 18:21:16 +0100 |
commit | 909560de38acb62b2d6fa66eb678453f87eb99ae (patch) | |
tree | 990b7c207078071d2e76db46a0aad7e121852adf | |
parent | 4abb36c8f94665a3133d58f455bcdf13dbe5c0a7 (diff) |
Fix CXXFLAGS for debian and debug build
-rw-r--r-- | common.mk | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -21,10 +21,10 @@ ifeq ($(shell which $(CXX)),) CXX=g++ endif -#ifeq ($(CXXFLAGS),) -CXXFLAGS=-O2 -g -DNDEBUG -#CXXFLAGS=-O0 -g -D_DEBUG -#endif +ifeq ($(CXXFLAGS),) +#CXXFLAGS=-O2 -g -DNDEBUG +CXXFLAGS=-O0 -g -D_DEBUG +endif # -fprofile-instr-generate -fcoverage-mapping # gcc:--coverage |