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 0367d90 commit 56d6547Copy full SHA for 56d6547
1 file changed
.github/workflows/build.yml
@@ -80,6 +80,12 @@ jobs:
80
run: |
81
docker run --rm --platform linux/arm64 -v ${{ github.workspace }}:/work -w /work termux/termux-docker:aarch64 sh -c "
82
pkg update && pkg install -y python binutils build-essential clang &&
83
+
84
+ # Create a mock ldd command to satisfy PyInstaller's setup check
85
+ echo '#!/bin/sh' > /usr/bin/ldd &&
86
+ echo 'echo \"not musl\" >&2' >> /usr/bin/ldd &&
87
+ chmod +x /usr/bin/ldd &&
88
89
export PYINSTALLER_COMPILE_BOOTLOADER=1 &&
90
pip install pyinstaller click rich &&
91
pyinstaller --onefile --name=warpshare-linux-bionic-aarch64 cli.py
0 commit comments