Skip to content
Merged
Changes from all commits
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
6 changes: 5 additions & 1 deletion build_vtk_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,11 @@ fi

# Use auditwheel to produce manylinux wheel
# For some reason auditwheel can't find libvtksys-9.2.so
if [ $(uname) == "linux" ]; then
OS=$(uname)
if [ $OS == "linux" ]; then
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/root/vtk_build/build/lib.linux-x86_64-3.11/vtkmodules
auditwheel repair dist/*.whl
elif [ $OS == "Darwin" ]; then
python -m pip install delocate
delocate-wheel -v dist/*.whl
fi