3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-20 23:56:38 +00:00

Merge pull request #36 from alaindargelas/backward_lib

Backward trace lib
This commit is contained in:
Akash Levy 2024-12-18 16:03:36 -08:00 committed by GitHub
commit 56130cb5ec
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -123,6 +123,12 @@ BISON ?= bison
STRIP ?= strip
AWK ?= awk
ifeq ($(OS), Linux)
LIBS += -ldw # SILIMATE: support for backward-cpp
CXXFLAGS += -DBACKWARD_HAS_DW # SILIMATE: support for backward-cpp
endif
ifeq ($(OS), Darwin)
PLUGIN_LINKFLAGS += -undefined dynamic_lookup
LINKFLAGS += -rdynamic