- Makefile: don't add '-g' after '-ggdb' to CXXFLAGS

This commit is contained in:
Siesh1oo 2014-03-11 22:00:49 +01:00
parent 31eee5c62e
commit 59239f65dd
1 changed files with 2 additions and 2 deletions

View File

@ -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)