mirror of https://github.com/YosysHQ/yosys.git
Update yosys for Docker
This commit is contained in:
parent
930fdbd6a1
commit
66b25d15c1
6
Makefile
6
Makefile
|
|
@ -383,6 +383,12 @@ BOOST_PYTHON_LIB ?= $(shell \
|
|||
$(call CHECK_BOOST_PYTHON,boost_python) \
|
||||
)
|
||||
|
||||
# Inside CentOS 7 Docker
|
||||
ifeq (${DOCKER_RUNNING},1)
|
||||
BOOST_PYTHON_LIB = -L/usr/lib64/boost169/ -lboost_python36
|
||||
CXXFLAGS += -I/usr/include/boost169/
|
||||
endif
|
||||
|
||||
ifeq ($(BOOST_PYTHON_LIB),)
|
||||
$(error BOOST_PYTHON_LIB could not be detected. Please define manually)
|
||||
endif
|
||||
|
|
|
|||
Loading…
Reference in New Issue