Skip to content

Commit

Permalink
f:f
Browse files Browse the repository at this point in the history
  • Loading branch information
sangjanai committed May 23, 2024
1 parent 08b4841 commit e63d1a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ install-dependencies:
ifeq ($(OS),Windows_NT) # Windows
cmd /C install_deps.bat
else # Unix-like systems (Linux and MacOS)
export LD_LIBRARY_PATH="/home/runner/actions-runner/_work/cortex.python/cortex.python/build_deps/_install/lib:$LD_LIBRARY_PATH"
bash ./install_deps.sh
endif

Expand Down
6 changes: 3 additions & 3 deletions third-party/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -162,9 +162,9 @@ if (UNIX) # APPLE and LINUX
Python3
URL https://www.python.org/ftp/python/3.10.4/Python-3.10.4.tgz
PREFIX ${THIRD_PARTY_INSTALL_PATH}
CONFIGURE_COMMAND ${CMAKE_COMMAND} -E env ${CFS} ${LDS} ./configure --prefix=<INSTALL_DIR> --enable-optimizations --with-ensurepip=install --enable-shared ${PYTHON_INSTALL_CONFIG_HOST} ${PYTHON_INSTALL_CONFIG_BUILD} ${PYTHON_INSTALL_CONFIG_SSL}
BUILD_COMMAND ${CMAKE_COMMAND} -E env ${CFS} ${LDS} make -j12
INSTALL_COMMAND ${CMAKE_COMMAND} -E env ${CFS} ${LDS} make install
CONFIGURE_COMMAND ${CMAKE_COMMAND} -E env LD_LIBRARY_PATH=${THIRD_PARTY_INSTALL_PATH}/$LD_LIBRARY_PATH ./configure --prefix=<INSTALL_DIR> --enable-optimizations --with-ensurepip=install --enable-shared ${PYTHON_INSTALL_CONFIG_HOST} ${PYTHON_INSTALL_CONFIG_BUILD} ${PYTHON_INSTALL_CONFIG_SSL}
BUILD_COMMAND make -j12
INSTALL_COMMAND make install
BUILD_IN_SOURCE 1
)

Expand Down

0 comments on commit e63d1a6

Please sign in to comment.