mk: Don't emit landing pads in stage 0.

Reduces time to build stage0 from 11:30 to 9:40 on my machine.
This commit is contained in:
Brian Anderson 2014-08-08 16:54:26 -07:00
parent 57630eb809
commit e59fb9eb62
1 changed files with 4 additions and 0 deletions

View File

@ -139,6 +139,10 @@ endif
RUSTFLAGS_STAGE0 += -C prefer-dynamic
RUSTFLAGS_STAGE1 += -C prefer-dynamic
# Landing pads require a lot of codegen. We can get through bootstrapping faster
# by not emitting them.
RUSTFLAGS_STAGE0 += -Z no-landing-pads
# platform-specific auto-configuration
include $(CFG_SRC_DIR)mk/platform.mk