Skip to content

Commit d2f2df1

Browse files
committed
Make --enable-orbit the default in ./configure.
1 parent 514f423 commit d2f2df1

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

configure

+2-2
Original file line numberDiff line numberDiff line change
@@ -609,7 +609,7 @@ opt dist-host-only 0 "only install bins for the host architecture"
609609
opt inject-std-version 1 "inject the current compiler version of libstd into programs"
610610
opt llvm-version-check 1 "check if the LLVM version is supported, build anyway"
611611
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"
613613
opt codegen-tests 1 "run the src/test/codegen tests"
614614
opt option-checking 1 "complain about unrecognized options in this configure script"
615615
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
733733
if [ -n "$CFG_ENABLE_DEBUGINFO" ]; then putvar CFG_ENABLE_DEBUGINFO; fi
734734
if [ -n "$CFG_ENABLE_DEBUG_JEMALLOC" ]; then putvar CFG_ENABLE_DEBUG_JEMALLOC; fi
735735

736-
if [ -n "$CFG_ENABLE_ORBIT" ]; then putvar CFG_ENABLE_ORBIT; fi
736+
if [ -n "$CFG_DISABLE_ORBIT" ]; then putvar CFG_DISABLE_ORBIT; fi
737737

738738
step_msg "looking for build programs"
739739

mk/main.mk

+3-3
Original file line numberDiff line numberDiff line change
@@ -162,9 +162,9 @@ ifdef CFG_ENABLE_DEBUGINFO
162162
CFG_RUSTC_FLAGS += -g
163163
endif
164164

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
168168
endif
169169

170170
ifdef SAVE_TEMPS

0 commit comments

Comments
 (0)