mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-24 01:25:33 +00:00
Merge pull request #3499 from YosysHQ/micko/verific_edif
Add support for EDIF file reading using Verific
This commit is contained in:
commit
b5d3920bf5
2 changed files with 52 additions and 1 deletions
5
Makefile
5
Makefile
|
@ -18,6 +18,7 @@ ENABLE_READLINE := 1
|
|||
ENABLE_EDITLINE := 0
|
||||
ENABLE_GHDL := 0
|
||||
ENABLE_VERIFIC := 0
|
||||
ENABLE_VERIFIC_EDIF := 0
|
||||
DISABLE_VERIFIC_EXTENSIONS := 0
|
||||
DISABLE_VERIFIC_VHDL := 0
|
||||
ENABLE_COVER := 1
|
||||
|
@ -527,6 +528,10 @@ ifneq ($(wildcard $(VERIFIC_DIR)/vhdl),)
|
|||
VERIFIC_COMPONENTS += vhdl
|
||||
endif
|
||||
endif
|
||||
ifeq ($(ENABLE_VERIFIC_EDIF),1)
|
||||
VERIFIC_COMPONENTS += edif
|
||||
CXXFLAGS += -DVERIFIC_EDIF_SUPPORT
|
||||
endif
|
||||
ifneq ($(DISABLE_VERIFIC_EXTENSIONS),1)
|
||||
VERIFIC_COMPONENTS += extensions
|
||||
CXXFLAGS += -DYOSYSHQ_VERIFIC_EXTENSIONS
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue