3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-27 19:05:52 +00:00

Merge pull request #32 from alaindargelas/stacktrace

Stacktrace
This commit is contained in:
Akash Levy 2024-12-05 14:45:50 -08:00 committed by GitHub
commit 737213fc43
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 12 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
@ -156,6 +156,10 @@ else
LINKFLAGS += -rdynamic
ifneq ($(OS), OpenBSD)
LIBS += -lrt
LIBS += -lbfd # SILIMATE: support for backward-cpp
CXXFLAGS += -DBACKWARD_HAS_BFD # SILIMATE: support for backward-cpp
endif
endif