[commit: ghc] master: gitlab-ci: Pass --target explicitly to configure on Windows (2ef72d3)
git at git.haskell.org
git at git.haskell.org
Fri Mar 22 04:01:19 UTC 2019
Repository : ssh://git@git.haskell.org/ghc
On branch : master
Link : http://ghc.haskell.org/trac/ghc/changeset/2ef72d3f2b40f4a180501507797378952fc38bae/ghc
>---------------------------------------------------------------
commit 2ef72d3f2b40f4a180501507797378952fc38bae
Author: Ben Gamari <ben at smart-cactus.org>
Date: Wed Mar 20 23:45:26 2019 -0400
gitlab-ci: Pass --target explicitly to configure on Windows
Otherwise configure fails in the 32-bit case with
```
This GHC (c:/GitLabRunner/builds/8fc0e283/0/ghc/ghc/toolchain/bin/ghc) does not generate code for the build platform
GHC target platform : x86_64-unknown-mingw32
Desired build platform : i386-unknown-mingw32
```
>---------------------------------------------------------------
2ef72d3f2b40f4a180501507797378952fc38bae
.gitlab-ci.yml | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2f20430..0364cec 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -521,7 +521,7 @@ nightly-i386-windows-hadrian:
script:
- |
python boot
- bash -c './configure --enable-tarballs-autodownload GHC=`pwd`/toolchain/bin/ghc HAPPY=`pwd`/toolchain/bin/happy ALEX=`pwd`/toolchain/bin/alex'
+ bash -c './configure --enable-tarballs-autodownload GHC=`pwd`/toolchain/bin/ghc HAPPY=`pwd`/toolchain/bin/happy ALEX=`pwd`/toolchain/bin/alex $CONFIGURE_ARGS'
- bash -c "echo include mk/flavours/${BUILD_FLAVOUR}.mk > mk/build.mk"
- bash -c "PATH=`pwd`/toolchain/bin:$PATH make -j`mk/detect-cpu-count.sh`"
- bash -c "PATH=`pwd`/toolchain/bin:$PATH make binary-dist TAR_COMP_OPTS=-1"
@@ -541,6 +541,7 @@ validate-x86_64-windows:
extends: .build-windows-make
variables:
MSYSTEM: MINGW64
+ CONFIGURE_ARGS: "--target=x86_64-unknown-mingw32"
cache:
key: x86_64-windows
@@ -550,6 +551,7 @@ release-x86_64-windows:
variables:
MSYSTEM: MINGW64
BUILD_FLAVOUR: "perf"
+ CONFIGURE_ARGS: "--target=x86_64-unknown-mingw32"
only:
- tags
@@ -560,6 +562,7 @@ release-i386-windows:
variables:
MSYSTEM: MINGW32
BUILD_FLAVOUR: "perf"
+ CONFIGURE_ARGS: "--target=i386-unknown-mingw32"
cache:
key: i386-windows
@@ -570,6 +573,7 @@ nightly-i386-windows:
- $NIGHTLY
variables:
MSYSTEM: MINGW32
+ CONFIGURE_ARGS: "--target=i386-unknown-mingw32"
cache:
key: i386-windows
More information about the ghc-commits
mailing list