Skip to content

Commit

Permalink
Fix Windows cross-compilation filenames
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrueden committed Jan 30, 2025
1 parent 83cdd12 commit 48ba227
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions bin/compile-launcher.sh
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,14 @@ case "$(uname -s)" in
then
# windows-arm64 (console and GUI builds)
compile "$cdir/bin/aarch64-w64-mingw32-clang" \
-o build/launcher-windows-arm64.exe -mconsole &&
-o build/launcher-windows-arm64-console.exe -mconsole &&
compile "$cdir/bin/aarch64-w64-mingw32-clang" \
-o build/launcher-windows-arm64.exe -mwindows &&
-o build/launcher-windows-arm64-gui.exe -mwindows &&
# windows-x64 (console and GUI builds)
compile "$cdir/bin/x86_64-w64-mingw32-clang" \
-o build/launcher-windows-x64.exe -mconsole &&
-o build/launcher-windows-x64-console.exe -mconsole &&
compile "$cdir/bin/x86_64-w64-mingw32-clang" \
-o build/launcher-windows-x64.exe -mwindows
-o build/launcher-windows-x64-gui.exe -mwindows
else
echo '[WARNING] Failed to set up llvm-mingw; skipping Windows cross-compilation'
fi
Expand Down

0 comments on commit 48ba227

Please sign in to comment.