mirror of https://github.com/YosysHQ/yosys.git
- Makefile: don't add '-g' after '-ggdb' to CXXFLAGS
This commit is contained in:
parent
31eee5c62e
commit
59239f65dd
4
Makefile
4
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)
|
||||
|
|
Loading…
Reference in New Issue