- Makefile: don't add '-g' after '-ggdb' to CXXFLAGS
authorSiesh1oo <siesh1oo@siesh1oo.no>
Tue, 11 Mar 2014 21:00:49 +0000 (22:00 +0100)
committerSiesh1oo <siesh1oo@siesh1oo.no>
Tue, 11 Mar 2014 21:00:49 +0000 (22:00 +0100)
Makefile

index ce9a99bc09c73ae9a5f747d930f70cf95c5687dc..c1c81b8e71766c7c4165d2721ffe5d3cd3806783 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -63,12 +63,12 @@ MINISATREV = HEAD
 
 ifeq ($(CONFIG),clang-debug)
 CXX = clang
-CXXFLAGS += -std=c++11 -g -O0 -Wall
+CXXFLAGS += -std=c++11 -O0 -Wall
 endif
 
 ifeq ($(CONFIG),gcc-debug)
 CXX = gcc
-CXXFLAGS += -std=gnu++0x -g -O0 -Wall
+CXXFLAGS += -std=gnu++0x -O0 -Wall
 endif
 
 ifeq ($(CONFIG),release)