diff options
author | Siesh1oo <siesh1oo@siesh1oo.no> | 2014-03-11 22:00:49 +0100 |
---|---|---|
committer | Siesh1oo <siesh1oo@siesh1oo.no> | 2014-03-11 22:00:49 +0100 |
commit | 59239f65dda58980c5b20a4b4723cd725e740fda (patch) | |
tree | c28bbf3e925ceaec3ec00181182d0afa6a843335 | |
parent | 31eee5c62e631a1156978c0bab657e948e6bd22f (diff) | |
download | yosys-59239f65dda58980c5b20a4b4723cd725e740fda.tar.gz yosys-59239f65dda58980c5b20a4b4723cd725e740fda.tar.bz2 yosys-59239f65dda58980c5b20a4b4723cd725e740fda.zip |
- Makefile: don't add '-g' after '-ggdb' to CXXFLAGS
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |