mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-28 11:25:53 +00:00
- Makefile: don't add '-g' after '-ggdb' to CXXFLAGS
This commit is contained in:
parent
31eee5c62e
commit
59239f65dd
1 changed files with 2 additions and 2 deletions
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…
Add table
Add a link
Reference in a new issue