about summary refs log tree commit diff
path: root/src/ci/docker/scripts
diff options
context:
space:
mode:
authorJoshua Nelson <jnelson@cloudflare.com>2022-06-21 22:26:13 -0500
committerJoshua Nelson <jnelson@cloudflare.com>2022-07-10 16:28:57 -0500
commit4151a5b96cb4707bb0b09037bacc58ade1940fa2 (patch)
treed95b3a79782f486c34130743fc44fe06536ea7dd /src/ci/docker/scripts
parent2b646bd533e8a20c06a71d0b7837e15eb4c79fa8 (diff)
downloadrust-4151a5b96cb4707bb0b09037bacc58ade1940fa2.tar.gz
rust-4151a5b96cb4707bb0b09037bacc58ade1940fa2.zip
Remove unsupported options in configure.py
I've seen people using `optimize = false` and `full-bootstrap = true` in the past, without knowing
that they're not recommended. Remove `optimize` and a few other options that are always a bad idea,
and document that full-bootstrap is only for testing reproducible builds.
Diffstat (limited to 'src/ci/docker/scripts')
-rw-r--r--src/ci/docker/scripts/musl.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ci/docker/scripts/musl.sh b/src/ci/docker/scripts/musl.sh
index 65e15950559..3e5dc4af04a 100644
--- a/src/ci/docker/scripts/musl.sh
+++ b/src/ci/docker/scripts/musl.sh
@@ -33,7 +33,7 @@ if [ ! -d $MUSL ]; then
 fi
 
 cd $MUSL
-./configure --enable-optimize --enable-debug --disable-shared --prefix=/musl-$TAG "$@"
+./configure --enable-debug --disable-shared --prefix=/musl-$TAG "$@"
 if [ "$TAG" = "i586" -o "$TAG" = "i686" ]; then
   hide_output make -j$(nproc) AR=ar RANLIB=ranlib
 else