From: Siesh1oo Date: Tue, 11 Mar 2014 21:00:49 +0000 (+0100) Subject: - Makefile: don't add '-g' after '-ggdb' to CXXFLAGS X-Git-Tag: yosys-0.3.0~57^2~1^2~6^2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=59239f65dda58980c5b20a4b4723cd725e740fda;p=yosys.git - Makefile: don't add '-g' after '-ggdb' to CXXFLAGS --- 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)