We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11245bf commit be124bdCopy full SHA for be124bd
scripts/build-env/manylinux.sh
@@ -66,5 +66,13 @@ cmake --install .
66
cd ..
67
rm -rf build
68
69
+# Create symbolic link for lib64 to lib if it doesn't exist
70
+if [ -d "lib64" ] && [ ! -L "lib" ]; then
71
+ echo "Creating symbolic link for lib64 to lib..."
72
+ ln -s lib64 lib
73
+else
74
+ echo "Symbolic link for lib64 to lib already exists or lib64 does not exist."
75
+fi
76
+
77
cd ../..
78
0 commit comments