diff options
| author | Simon Tatham <anakin@pobox.com> | 2017-11-29 22:27:09 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2017-11-29 22:27:09 +0000 |
| commit | 4f8a4f7d7fb44e978b629c825ec871c7708e87b8 (patch) | |
| tree | 126ad64a74aa1c69d8794ccc20c19a2df741eb4e | |
| parent | 3cf09c261591b939df53c5357ab471c5b3076d22 (diff) | |
| download | puzzles-4f8a4f7d7fb44e978b629c825ec871c7708e87b8.zip puzzles-4f8a4f7d7fb44e978b629c825ec871c7708e87b8.tar.gz puzzles-4f8a4f7d7fb44e978b629c825ec871c7708e87b8.tar.bz2 puzzles-4f8a4f7d7fb44e978b629c825ec871c7708e87b8.tar.xz | |
Mark the 32-bit Windows build as runnable on XP.
By the same method I do it in PuTTY: manually set the Windows
subsystem version id to an earlier one than the default.
| -rw-r--r-- | Buildscr | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -56,7 +56,7 @@ in puzzles do mason.pl --args '{"version":"$(Version)","descfile":"gamedesc.txt" in puzzles do perl winiss.pl $(Version) gamedesc.txt > puzzles.iss ifneq "$(VISUAL_STUDIO)" "yes" then in puzzles with clangcl64 do mkdir win64 && Platform=x64 make -f Makefile.clangcl BUILDDIR=win64/ VER=-DVER=$(Version) XFLAGS='-Wwrite-strings -Werror' - in puzzles with clangcl32 do mkdir win32 && Platform=x86 make -f Makefile.clangcl BUILDDIR=win32/ VER=-DVER=$(Version) XFLAGS='-Wwrite-strings -Werror' + in puzzles with clangcl32 do mkdir win32 && Platform=x86 make -f Makefile.clangcl BUILDDIR=win32/ SUBSYSVER=,5.01 VER=-DVER=$(Version) XFLAGS='-Wwrite-strings -Werror' # Code-sign the binaries, if the local bob config provides a script # to do so. We assume here that the script accepts an -i option to # provide a 'more info' URL, and an optional -n option to provide a |