Skip to content

Commit 8514dd9

Browse files
committed
make orbit the default
1 parent 413bafd commit 8514dd9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

configure

+1-1
Original file line numberDiff line numberDiff line change
@@ -607,7 +607,7 @@ opt dist-host-only 0 "only install bins for the host architecture"
607607
opt inject-std-version 1 "inject the current compiler version of libstd into programs"
608608
opt llvm-version-check 1 "check if the LLVM version is supported, build anyway"
609609
opt rustbuild 0 "use the rust and cargo based build system"
610-
opt orbit 0 "get MIR where it belongs - everywhere; most importantly, in orbit"
610+
opt orbit 1 "get MIR where it belongs - everywhere; most importantly, in orbit"
611611
opt codegen-tests 1 "run the src/test/codegen tests"
612612
opt option-checking 1 "complain about unrecognized options in this configure script"
613613

src/librustc/session/config.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -678,7 +678,7 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options,
678678
"set the MIR optimization level (0-3)"),
679679
dump_mir: Option<String> = (None, parse_opt_string,
680680
"dump MIR state at various points in translation"),
681-
orbit: bool = (false, parse_bool,
681+
orbit: bool = (true, parse_bool,
682682
"get MIR where it belongs - everywhere; most importantly, in orbit"),
683683
}
684684

0 commit comments

Comments
 (0)