Skip to content

Commit 9452231

Browse files
author
Guanqun Lu
committed
reorder Build struct's fields based on the order in config.toml.example
1 parent a909541 commit 9452231

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/bootstrap/config.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -200,23 +200,23 @@ struct Build {
200200
target: Vec<String>,
201201
cargo: Option<String>,
202202
rustc: Option<String>,
203-
low_priority: Option<bool>,
204-
compiler_docs: Option<bool>,
205203
docs: Option<bool>,
204+
compiler_docs: Option<bool>,
206205
submodules: Option<bool>,
207206
fast_submodules: Option<bool>,
208207
gdb: Option<String>,
209-
locked_deps: Option<bool>,
210-
vendor: Option<bool>,
211208
nodejs: Option<String>,
212209
python: Option<String>,
210+
locked_deps: Option<bool>,
211+
vendor: Option<bool>,
213212
full_bootstrap: Option<bool>,
214213
extended: Option<bool>,
215214
tools: Option<HashSet<String>>,
216215
verbose: Option<usize>,
217216
sanitizers: Option<bool>,
218217
profiler: Option<bool>,
219218
cargo_native_static: Option<bool>,
219+
low_priority: Option<bool>,
220220
configure_args: Option<Vec<String>>,
221221
local_rebuild: Option<bool>,
222222
print_step_timings: Option<bool>,

0 commit comments

Comments
 (0)