diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2013-07-22 00:30:32 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2013-07-22 00:30:32 -0700 |
| commit | 634eddb28e6cb08008059a6162bb4f0bbd338be5 (patch) | |
| tree | 08adb31b3143319aa28ecde293f60e272dcf6503 | |
| parent | 74f4badcab30c91b018f308d2c44641abed7d732 (diff) | |
| download | rust-634eddb28e6cb08008059a6162bb4f0bbd338be5.tar.gz rust-634eddb28e6cb08008059a6162bb4f0bbd338be5.zip | |
Allow all warnings in stage0 to account for bugs
| -rw-r--r-- | mk/target.mk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mk/target.mk b/mk/target.mk index e3d4b985449..75482aed0d8 100644 --- a/mk/target.mk +++ b/mk/target.mk @@ -17,8 +17,7 @@ export CFG_COMPILER_TRIPLE # 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+) -# NOTE: add "-A warnings" after snapshot to WFLAGS_ST0 -WFLAGS_ST0 = -A unrecognized-lint +WFLAGS_ST0 = -A warnings WFLAGS_ST1 = -D warnings WFLAGS_ST2 = -D warnings |
