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 0b27d44 commit cc391ffCopy full SHA for cc391ff
bin/cibw_repair_wheel_command_windows.sh
@@ -29,8 +29,11 @@ wheeldir=$(dirname $WHEELNAME)
29
echo $wheeldir
30
31
# delvewheel requires DLLs created by mingw64 to be stripped. This strips the
32
-# DLLs for GMP etc that will have been build previously.
33
-strip .local/bin/*.dll .local/lib/*.dll
+# DLLs for GMP etc that will have been built in the CIBW_BEFORE_ALL step.
+#
34
+# Previously the Arb DLLs would have been placed in .local/lib, but as of
35
+# flint 3.0.0 all DLLs aRe in .local/bin.
36
+strip .local/bin/*.dll
37
38
# Make sure to leave the wheel in the same directory
39
wheeldir=$(dirname $WHEELNAME)
@@ -47,4 +50,4 @@ popd
47
50
# .pyd files that are needed for the wheel.
48
51
delvewheel repair $WHEELNAME \
49
52
-w $WHEELHOUSE \
- --add-path .local/bin:.local/lib/
53
+ --add-path .local/bin
0 commit comments