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

Fix platform dependence for CentOS 7

This commit is contained in:
Akash Levy 2024-10-20 16:47:48 -07:00
parent c9e1d08c79
commit 875bc18023

View file

@ -373,7 +373,7 @@ BOOST_PYTHON_LIB ?= $(shell \
)
# Inside CentOS 7
ifeq (${IS_CENTOS7},1)
ifeq (${PLATFORM},centos7)
BOOST_PYTHON_LIB = -L/opt/boost/lib -lboost_python38
CXXFLAGS += -I/opt/boost/include
endif