about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-02-10 23:06:37 -0800
committerAlex Crichton <alex@alexcrichton.com>2014-02-10 23:06:37 -0800
commit47ece1fa2ceec10f171fe87f789191999e914675 (patch)
tree3f5e1e8cc8958c1ff6b523d5a536d1e437ca2210
parent19f64b38f7e0dd90745aa9be6c1bd8afe008a705 (diff)
downloadrust-47ece1fa2ceec10f171fe87f789191999e914675.tar.gz
rust-47ece1fa2ceec10f171fe87f789191999e914675.zip
Don't use -Z prefer-dynamic at stage0
This is blocking a snapshot because the stage0 target compiler comes from a
stage1 host compiler. This means that the stage0 compiler doesn't actually
understand the -Z prefer-dynamic flag and is dying as a result.

This will get added back to stage0 after a snapshot.
-rw-r--r--Makefile.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 2d4c5e858a7..d0a7c5402e8 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -140,7 +140,8 @@ endif
 # snapshot will be generated with a statically linked rustc so we only have to
 # worry about the distribution of one file (with its native dynamic
 # dependencies)
-RUSTFLAGS_STAGE0 += -Z prefer-dynamic
+#
+# NOTE: after a snapshot (stage0), put this on stage0 as well
 RUSTFLAGS_STAGE1 += -C prefer-dynamic
 
 # platform-specific auto-configuration