Skip to content

Commit c4fa1e0

Browse files
committed
Deafult to 1 thread
1 parent 4382c25 commit c4fa1e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc/session/config.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1233,7 +1233,7 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options,
12331233
"prints the llvm optimization passes being run"),
12341234
ast_json: bool = (false, parse_bool, [UNTRACKED],
12351235
"print the AST as JSON and halt"),
1236-
threads: Option<usize> = (None, parse_opt_uint, [UNTRACKED],
1236+
threads: Option<usize> = (Some(1), parse_opt_uint, [UNTRACKED],
12371237
"use a thread pool with N threads"),
12381238
ast_json_noexpand: bool = (false, parse_bool, [UNTRACKED],
12391239
"print the pre-expansion AST as JSON and halt"),

0 commit comments

Comments
 (0)