3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-22 16:45:32 +00:00

Update yosys for Docker

This commit is contained in:
akash 2024-04-09 13:06:39 -07:00
parent 930fdbd6a1
commit 66b25d15c1

View file

@ -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