From 59239f65dda58980c5b20a4b4723cd725e740fda Mon Sep 17 00:00:00 2001 From: Siesh1oo Date: Tue, 11 Mar 2014 22:00:49 +0100 Subject: [PATCH] - Makefile: don't add '-g' after '-ggdb' to CXXFLAGS --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ce9a99bc0..c1c81b8e7 100644 --- 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) -- 2.30.2