diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-10-28 10:55:02 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-10-30 12:24:36 -0700 |
commit | e9073a7570f490ad169dbd92a7d6f102c423c2ca (patch) | |
tree | 4c8b4ba00449ea030d04c8683821b7162fa09a42 /scripts | |
parent | cdf1865246563fde47a1cf2a5fc3c0fd70b8e5ba (diff) | |
download | subsurface-e9073a7570f490ad169dbd92a7d6f102c423c2ca.tar.gz |
build-system: first steps towards a 64bit Windows build
This is barely scratching the surface (no put intended), and of course the
container needs to be updated, first, to have a 64bit version of MXE installed,
but this seems to help make libmtp build correctly.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/windows-container/in-container-build.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/windows-container/in-container-build.sh b/scripts/windows-container/in-container-build.sh index fd38d7ba0..d7a563541 100644 --- a/scripts/windows-container/in-container-build.sh +++ b/scripts/windows-container/in-container-build.sh @@ -10,11 +10,11 @@ set -x set -e -mkdir -p win32 -cd win32 +mkdir -p win64 +cd win64 # right now the container still has an older version of MXE installed -export MXEBUILDTYPE=i686-w64-mingw32.shared +export MXEBUILDTYPE=x86_64-w64-mingw32.shared bash -ex ../subsurface/packaging/windows/mxe-based-build.sh installer |