3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-11-02 04:27:53 +00:00

Support for backtrace

This commit is contained in:
Alain Dargelas 2024-12-05 13:29:27 -08:00
parent 7c8a325adf
commit 0e82550429
4 changed files with 11 additions and 2 deletions

View file

@ -64,7 +64,7 @@ SANITIZER =
# SANITIZER = cfi
# Prefer using ENABLE_DEBUG over setting these
OPT_LEVEL := -O3
OPT_LEVEL := -O3 -g
GCC_LTO :=
CLANG_LTO := -flto=thin
@ -438,6 +438,8 @@ LIBS += -ldl
endif
endif
LIBS += -lbfd # SILIMATE: support for backward-cpp
ifeq ($(ENABLE_GLOB),1)
CXXFLAGS += -DYOSYS_ENABLE_GLOB
endif