From 06ea0372aef346aade9b269dcced4d33d8d25aa9 Mon Sep 17 00:00:00 2001 From: akash Date: Wed, 17 Apr 2024 11:19:15 -0700 Subject: [PATCH] Updated Makefile --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index b66c1e837..dee1786ac 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