3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-05 17:14:08 +00:00

Merge pull request #4757 from YosysHQ/emil/yosys-config-version

Makefile: add YOSYS_VER and friends to CXXFLAGS for plugin compat che…
This commit is contained in:
Emil J 2025-03-10 17:43:55 +01:00 committed by GitHub
commit 7677a76fed
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -154,6 +154,13 @@ CXXFLAGS += -D_DEFAULT_SOURCE
endif
YOSYS_VER := 0.50+56
YOSYS_MAJOR := $(shell echo $(YOSYS_VER) | cut -d'.' -f1)
YOSYS_MINOR := $(shell echo $(YOSYS_VER) | cut -d'.' -f2 | cut -d'+' -f1)
YOSYS_COMMIT := $(shell echo $(YOSYS_VER) | cut -d'+' -f2)
CXXFLAGS += -DYOSYS_VER=\\"$(YOSYS_VER)\\" \
-DYOSYS_MAJOR=$(YOSYS_MAJOR) \
-DYOSYS_MINOR=$(YOSYS_MINOR) \
-DYOSYS_COMMIT=$(YOSYS_COMMIT)
# Note: We arrange for .gitcommit to contain the (short) commit hash in
# tarballs generated with git-archive(1) using .gitattributes. The git repo