diff options
| author | Marco Castelluccio <mcastelluccio@mozilla.com> | 2017-06-07 12:50:50 +0100 |
|---|---|---|
| committer | Marco Castelluccio <mcastelluccio@mozilla.com> | 2017-06-07 12:50:50 +0100 |
| commit | ce56daf37b7b5b101db7ef895e6be4586d80d08e (patch) | |
| tree | 07fdd7907189713826ca4bf5d9aeeb518fe251f1 | |
| parent | 4c908a9d37d1ed173e4226c3b71e9f05b7260c39 (diff) | |
| download | rust-ce56daf37b7b5b101db7ef895e6be4586d80d08e.tar.gz rust-ce56daf37b7b5b101db7ef895e6be4586d80d08e.zip | |
Don't enable profiler on MinGW targets, as compiler-rt can't currently be compiled with MinGW
| -rw-r--r-- | appveyor.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml index d4f805de5de..4711f34f830 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -59,7 +59,7 @@ environment: SCRIPT: python x.py dist DEPLOY: 1 - MSYS_BITS: 32 - RUST_CONFIGURE_ARGS: --build=i686-pc-windows-gnu --enable-extended --enable-profiler + RUST_CONFIGURE_ARGS: --build=i686-pc-windows-gnu --enable-extended SCRIPT: python x.py dist MINGW_URL: https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror MINGW_ARCHIVE: i686-6.3.0-release-posix-dwarf-rt_v5-rev2.7z @@ -67,7 +67,7 @@ environment: DEPLOY: 1 - MSYS_BITS: 64 SCRIPT: python x.py dist - RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-gnu --enable-extended --enable-profiler + RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-gnu --enable-extended MINGW_URL: https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror MINGW_ARCHIVE: x86_64-6.3.0-release-posix-seh-rt_v5-rev2.7z MINGW_DIR: mingw64 |
