fix: consider -fuse-ld

This commit is contained in:
2024-09-11 22:03:33 +08:00
parent 9b874ad9b9
commit cab40fbdf5
2 changed files with 16 additions and 8 deletions

View File

@ -1,10 +1,11 @@
#!/bin/bash
if [ ! -f "log.wmake" ]
then
echo "wmake > log.wmake"
wmake $@ >log.wmake 2>&1
fi
wclean && wmake $@ > log.wmake 2>&1
# if [ ! -f "log.wmake" ]
# then
# echo "wmake > log.wmake"
# wmake $@ >log.wmake 2>&1
# fi
# Find the Python executable in the system
PYTHON_EXEC=$(which python3)