Skip to content

Commit

Permalink
[misc] Fix embedded shared library optional loading.
Browse files Browse the repository at this point in the history
  • Loading branch information
duburcqa committed Aug 9, 2023
1 parent 536027f commit f62e10e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build_tools/build_install_deps_unix.sh
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ cmake "$RootDir/assimp" \
-DCMAKE_OSX_ARCHITECTURES="${OSX_ARCHITECTURES}" -DCMAKE_OSX_DEPLOYMENT_TARGET="${MACOSX_DEPLOYMENT_TARGET}" \
-DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_POSITION_INDEPENDENT_CODE=ON \
-DBUILD_SHARED_LIBS=OFF -DBUILD_STATIC_LIBS=ON \
-DASSIMP_BUILD_ASSIMP_TOOLS=OFF -DASSIMP_BUILD_ZLIB=ON -DASSIMP_BUILD_TESTS=OFF \
-DASSIMP_BUILD_ASSIMP_TOOLS=OFF -DASSIMP_BUILD_ZLIB=OFF -DASSIMP_BUILD_TESTS=OFF \
-DASSIMP_BUILD_SAMPLES=OFF -DBUILD_DOCS=OFF \
-DCMAKE_C_FLAGS="${CMAKE_CXX_FLAGS}" -DCMAKE_CXX_FLAGS_RELEASE_INIT="" \
-DCMAKE_CXX_FLAGS="${CMAKE_CXX_FLAGS} -Wno-strict-overflow -Wno-tautological-compare $(
Expand Down
2 changes: 1 addition & 1 deletion build_tools/build_install_deps_windows.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ Set-Location -Path "$RootDir/assimp/build"
cmake "$RootDir/assimp" -Wno-dev -G "${GENERATOR}" -DCMAKE_GENERATOR_PLATFORM=x64 `
-DCMAKE_POLICY_DEFAULT_CMP0091=NEW -DCMAKE_MSVC_RUNTIME_LIBRARY="MultiThreaded$<$<CONFIG:Debug>:Debug>DLL" `
-DCMAKE_CXX_STANDARD=17 -DCMAKE_INSTALL_PREFIX="$InstallDir" `
-DASSIMP_BUILD_ASSIMP_TOOLS=OFF -DASSIMP_BUILD_ZLIB=ON -DASSIMP_BUILD_TESTS=OFF `
-DASSIMP_BUILD_ASSIMP_TOOLS=OFF -DASSIMP_BUILD_ZLIB=OFF -DASSIMP_BUILD_TESTS=OFF `
-DASSIMP_BUILD_SAMPLES=OFF -DBUILD_DOCS=OFF -DASSIMP_INSTALL_PDB=OFF `
-DBUILD_SHARED_LIBS=OFF -DCMAKE_CXX_FLAGS="${CMAKE_CXX_FLAGS} /wd4005" `
-DCMAKE_C_FLAGS="${CMAKE_CXX_FLAGS}"
Expand Down
2 changes: 1 addition & 1 deletion build_tools/wheel_repair_linux.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@


WHITE_LIST_DEPS = (
"boost_python",) #"boost_numpy", "eigenpy", "hpp-fcl", "pinocchio")
"boost_python", "boost_numpy", "eigenpy", "hpp-fcl", "pinocchio")


copylib_orig = auditwheel.repair.copylib
Expand Down
2 changes: 1 addition & 1 deletion build_tools/wheel_repair_win.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@


WHITE_LIST_DEPS = (
"boost_python",) #"boost_numpy", "eigenpy", "hpp-fcl", "pinocchio")
"boost_python", "boost_numpy", "eigenpy", "hpp-fcl", "pinocchio")


def hash_filename(filepath, blocksize=65536):
Expand Down

0 comments on commit f62e10e

Please sign in to comment.