File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -609,7 +609,7 @@ opt dist-host-only 0 "only install bins for the host architecture"
609
609
opt inject-std-version 1 " inject the current compiler version of libstd into programs"
610
610
opt llvm-version-check 1 " check if the LLVM version is supported, build anyway"
611
611
opt rustbuild 0 " use the rust and cargo based build system"
612
- opt orbit 0 " get MIR where it belongs - everywhere; most importantly, in orbit"
612
+ opt orbit 1 " get MIR where it belongs - everywhere; most importantly, in orbit"
613
613
opt codegen-tests 1 " run the src/test/codegen tests"
614
614
opt option-checking 1 " complain about unrecognized options in this configure script"
615
615
opt ninja 0 " build LLVM using the Ninja generator (for MSVC, requires building in the correct environment)"
@@ -733,7 +733,7 @@ if [ -n "$CFG_ENABLE_DEBUG_ASSERTIONS" ]; then putvar CFG_ENABLE_DEBUG_ASSERTION
733
733
if [ -n " $CFG_ENABLE_DEBUGINFO " ]; then putvar CFG_ENABLE_DEBUGINFO; fi
734
734
if [ -n " $CFG_ENABLE_DEBUG_JEMALLOC " ]; then putvar CFG_ENABLE_DEBUG_JEMALLOC; fi
735
735
736
- if [ -n " $CFG_ENABLE_ORBIT " ]; then putvar CFG_ENABLE_ORBIT ; fi
736
+ if [ -n " $CFG_DISABLE_ORBIT " ]; then putvar CFG_DISABLE_ORBIT ; fi
737
737
738
738
step_msg " looking for build programs"
739
739
Original file line number Diff line number Diff line change @@ -162,9 +162,9 @@ ifdef CFG_ENABLE_DEBUGINFO
162
162
CFG_RUSTC_FLAGS += -g
163
163
endif
164
164
165
- ifdef CFG_ENABLE_ORBIT
166
- $(info cfg : launching MIR (CFG_ENABLE_ORBIT ))
167
- CFG_RUSTC_FLAGS += -Z orbit
165
+ ifdef CFG_DISABLE_ORBIT
166
+ $(info cfg : HOLD HOLD HOLD (CFG_DISABLE_ORBIT ))
167
+ CFG_RUSTC_FLAGS += -Z orbit=off
168
168
endif
169
169
170
170
ifdef SAVE_TEMPS
You can’t perform that action at this time.
0 commit comments