mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-24 01:25:33 +00:00
Support for reading liberty files using verific
This commit is contained in:
parent
5f209f8be5
commit
e702f2894a
2 changed files with 50 additions and 1 deletions
5
Makefile
5
Makefile
|
@ -19,6 +19,7 @@ ENABLE_EDITLINE := 0
|
|||
ENABLE_GHDL := 0
|
||||
ENABLE_VERIFIC := 0
|
||||
ENABLE_VERIFIC_EDIF := 0
|
||||
ENABLE_VERIFIC_LIBERTY := 0
|
||||
DISABLE_VERIFIC_EXTENSIONS := 0
|
||||
DISABLE_VERIFIC_VHDL := 0
|
||||
ENABLE_COVER := 1
|
||||
|
@ -531,6 +532,10 @@ ifeq ($(ENABLE_VERIFIC_EDIF),1)
|
|||
VERIFIC_COMPONENTS += edif
|
||||
CXXFLAGS += -DVERIFIC_EDIF_SUPPORT
|
||||
endif
|
||||
ifeq ($(ENABLE_VERIFIC_LIBERTY),1)
|
||||
VERIFIC_COMPONENTS += synlib
|
||||
CXXFLAGS += -DVERIFIC_LIBERTY_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