diff options
| author | Patrick Walton <[email protected]> | 2011-04-29 11:55:32 -0700 |
|---|---|---|
| committer | Patrick Walton <[email protected]> | 2011-04-29 11:55:32 -0700 |
| commit | 648c4ae2ba0dc44284112fd91544cda598ce0603 (patch) | |
| tree | d930c8b3ba589566b0dfee8ee554a4d843ef85b8 /Makefile.in | |
| parent | rustc: Add a --time-passes option (diff) | |
| download | rust-648c4ae2ba0dc44284112fd91544cda598ce0603.tar.xz rust-648c4ae2ba0dc44284112fd91544cda598ce0603.zip | |
build: Add a TIME_PASSES=1 variable
Diffstat (limited to 'Makefile.in')
| -rw-r--r-- | Makefile.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 2c6e4521..8954d830 100644 --- a/Makefile.in +++ b/Makefile.in @@ -24,6 +24,9 @@ endif ifdef SAVE_TEMPS CFG_RUSTC_FLAGS += --save-temps endif +ifdef TIME_PASSES + CFG_RUSTC_FLAGS += --time-passes +endif # On Darwin, we need to run dsymutil so the debugging information ends # up in the right place. On other platforms, it automatically gets |