Skip to content

Commit 919e2ff

Browse files
committed
ENH: Add Linux ARMv8 TBB support
1 parent 3927c51 commit 919e2ff

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

scripts/internal/manylinux-build-wheels.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,11 @@ if test "${ARCH}" == "x64"; then
155155
/opt/python/cp37-cp37m/bin/auditwheel repair --plat manylinux2014_x86_64 ${whl} -w /work/dist/
156156
rm ${whl}
157157
done
158+
else
159+
for whl in dist/itk_*$(uname -p).whl; do
160+
auditwheel repair ${whl} -w /work/dist/
161+
rm ${whl}
162+
done
158163
fi
159164
for itk_wheel in dist/itk*-linux*.whl; do
160165
mv ${itk_wheel} ${itk_wheel/linux/manylinux2014}

0 commit comments

Comments
 (0)