From 66b25d15c1e80f3a5d55427e36fdce113d1aa92c Mon Sep 17 00:00:00 2001 From: akash Date: Tue, 9 Apr 2024 13:06:39 -0700 Subject: [PATCH] Update yosys for Docker --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 0ca37f904..a8a4b1305 100644 --- a/Makefile +++ b/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