Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use cp -rp to copy tbb libs to avoid relinking every time running make #7155

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Use rsync to copy tbb libs to avoid relinking every time running make
  • Loading branch information
cielavenir committed Jan 31, 2025
commit be387ca36ea47d3315ab922bd375f1f95987b71d
4 changes: 2 additions & 2 deletions 3rdparty/ipp/ipp.cmake
Original file line number Diff line number Diff line change
@@ -55,7 +55,7 @@ ExternalProject_Add(ext_ipp
URL_HASH SHA256=${IPP_HASH}
DOWNLOAD_DIR "${OPEN3D_THIRD_PARTY_DOWNLOAD_DIR}/ipp"
# Copy all libs from lib/tl/tbb to lib/ since Open3D cmake scripts only support one LIB_DIR per dependency
UPDATE_COMMAND ${CMAKE_COMMAND} -E copy_directory <SOURCE_DIR>/${IPP_SUBPATH}lib/tl/tbb/ <SOURCE_DIR>/${IPP_SUBPATH}lib/
UPDATE_COMMAND rsync -rut <SOURCE_DIR>/${IPP_SUBPATH}lib/tl/tbb/ <SOURCE_DIR>/${IPP_SUBPATH}lib/
CONFIGURE_COMMAND ""
BUILD_COMMAND ""
INSTALL_COMMAND ""
@@ -65,4 +65,4 @@ ExternalProject_Add(ext_ipp

ExternalProject_Get_Property(ext_ipp SOURCE_DIR)
set(IPP_INCLUDE_DIR "${SOURCE_DIR}/${IPP_SUBPATH}include/")
set(IPP_LIB_DIR "${SOURCE_DIR}/${IPP_SUBPATH}lib")
set(IPP_LIB_DIR "${SOURCE_DIR}/${IPP_SUBPATH}lib")
Loading