aboutsummaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorPatrick Walton <[email protected]>2011-04-29 10:23:07 -0700
committerPatrick Walton <[email protected]>2011-04-29 10:23:53 -0700
commitc52fb52fbcb57ef8eb9f2e5782339b9e72cc81f8 (patch)
treef6e4950febadcca84c5a33606ad5f6cbdf785651 /Makefile.in
parentIntern metadata while writing, shrink stage1 from 12mb to 5.7mb. (diff)
downloadrust-c52fb52fbcb57ef8eb9f2e5782339b9e72cc81f8.tar.xz
rust-c52fb52fbcb57ef8eb9f2e5782339b9e72cc81f8.zip
rustc: Remove the wrong-compiler warning; we're self-hosting now.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 2c33bbb2..2c6e4521 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -16,9 +16,9 @@ CFG_GCC_LINK_FLAGS :=
CFG_BOOT_FLAGS := $(BOOT_FLAGS)
ifdef CFG_DISABLE_OPTIMIZE
$(info cfg: disabling rustc optimization (CFG_DISABLE_OPTIMIZE))
- CFG_RUSTC_FLAGS := --nowarn
+ CFG_RUSTC_FLAGS :=
else
- CFG_RUSTC_FLAGS := --nowarn -O
+ CFG_RUSTC_FLAGS := -O
endif
ifdef SAVE_TEMPS