-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update build scripts for Native Windows (Mingw64)
- Loading branch information
Showing
2 changed files
with
17 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/bash | ||
# 64-bit Windows cross build script | ||
# Calls the 64-bit cross script but with specific libs from my win10 machine | ||
libs="$(echo -n /mingw64/bin/{libstdc++-6.dll,libgcc_s_seh-1.dll} \ | ||
/mingw64/x86_64-w64-mingw32/{lib/libboost_*-*.dll,bin/SDL2.dll} \ | ||
/mingw64/bin/libwinpthread-1.dll)" opt/build-win64-cross.sh |