diff options
| author | Patrick Walton <[email protected]> | 2011-04-29 10:23:07 -0700 |
|---|---|---|
| committer | Patrick Walton <[email protected]> | 2011-04-29 10:23:53 -0700 |
| commit | c52fb52fbcb57ef8eb9f2e5782339b9e72cc81f8 (patch) | |
| tree | f6e4950febadcca84c5a33606ad5f6cbdf785651 /Makefile.in | |
| parent | Intern metadata while writing, shrink stage1 from 12mb to 5.7mb. (diff) | |
| download | rust-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.in | 4 |
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 |