diff options
| author | Josh Stone <jistone@redhat.com> | 2019-07-23 12:04:31 -0700 |
|---|---|---|
| committer | Josh Stone <jistone@redhat.com> | 2019-07-23 12:04:31 -0700 |
| commit | 1aeadcc0d560fd4ce88e2c5dfd98484c2443018b (patch) | |
| tree | a345a1fb377b79f742ef6cf064c115b05a8752b8 /src/ci | |
| parent | 3ebca72a11869f946b31f900faffb75c2bb2473a (diff) | |
| download | rust-1aeadcc0d560fd4ce88e2c5dfd98484c2443018b.tar.gz rust-1aeadcc0d560fd4ce88e2c5dfd98484c2443018b.zip | |
Require a value for configure --debuginfo-level
In `configure.py`, using the `o` function creates an enable/disable boolean setting, and writes `true` or `false` in `config.toml`. However, rustbuild is expecting to parse a `u32` debuginfo level. We can change to the `v` function to have the options require a value.
Diffstat (limited to 'src/ci')
| -rwxr-xr-x | src/ci/run.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ci/run.sh b/src/ci/run.sh index 1039343827d..f1eb417cdf9 100755 --- a/src/ci/run.sh +++ b/src/ci/run.sh @@ -50,7 +50,7 @@ if [ "$DEPLOY$DEPLOY_ALT" = "1" ]; then RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --release-channel=$RUST_RELEASE_CHANNEL" RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-llvm-static-stdcpp" RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.remap-debuginfo" - RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.debuginfo-level-std=1" + RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --debuginfo-level-std=1" if [ "$NO_LLVM_ASSERTIONS" = "1" ]; then RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --disable-llvm-assertions" |
