diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2013-10-16 11:27:24 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2013-10-16 11:53:05 -0700 |
| commit | 6969e5fb587dff4798386b1386661920b71e9f00 (patch) | |
| tree | 7935a1a9f307832ba0913e06e3d9b3f3887643b1 | |
| parent | fabec998e5667d651d3475c12ee25ab97d21105c (diff) | |
| download | rust-6969e5fb587dff4798386b1386661920b71e9f00.tar.gz rust-6969e5fb587dff4798386b1386661920b71e9f00.zip | |
Allow stage0 warnings
| -rw-r--r-- | mk/target.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mk/target.mk b/mk/target.mk index 8592f7968c8..cd0b78dfe6d 100644 --- a/mk/target.mk +++ b/mk/target.mk @@ -15,9 +15,9 @@ export CFG_COMPILER_TRIPLE # The standard libraries should be held up to a higher standard than any old # code, make sure that these common warnings are denied by default. These can -# be overridden during development temporarily. For stage0, we allow all these -# to suppress warnings which may be bugs in stage0 (should be fixed in stage1+) -WFLAGS_ST0 = -A warnings +# be overridden during development temporarily. For stage0, we allow warnings +# which may be bugs in stage0 (should be fixed in stage1+) +WFLAGS_ST0 = -W warnings WFLAGS_ST1 = -D warnings WFLAGS_ST2 = -D warnings |
