mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-24 01:25:33 +00:00
Added Wrappers for:
-IdString -Const -CaseRule -SwitchRule -SyncRule -Process -SigChunk -SigBit -SigSpec With all their member functions as well as the remaining member functions for Cell, Wire, Module and Design and static functions of rtlil.h
This commit is contained in:
parent
416946a16a
commit
bf7b73acfc
4 changed files with 2940 additions and 159 deletions
4
Makefile
4
Makefile
|
@ -19,7 +19,7 @@ ENABLE_PROTOBUF := 0
|
|||
|
||||
# python wrappers
|
||||
ENABLE_PYTHON := 1
|
||||
PYTHON_VERSION := 3.6
|
||||
PYTHON_VERSION := 3.5
|
||||
|
||||
# other configuration flags
|
||||
ENABLE_GPROF := 0
|
||||
|
@ -233,7 +233,7 @@ TARGETS += libyosys.so
|
|||
endif
|
||||
|
||||
ifeq ($(ENABLE_PYTHON),1)
|
||||
LDLIBS += -lpython$(PYTHON_VERSION)m -lboost_python-py$(subst .,,$(PYTHON_VERSION))
|
||||
LDLIBS += -lpython$(PYTHON_VERSION)m -lboost_python-py$(subst .,,$(PYTHON_VERSION)) -lboost_system
|
||||
CXXFLAGS += -I/usr/include/python$(PYTHON_VERSION) -D WITH_PYTHON
|
||||
OBJS += kernel/python_wrappers.o
|
||||
endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue