Skip to content

Commit 2c93fd2

Browse files
author
Guanqun Lu
committedOct 24, 2019
reorder Rust struct's fields based on the order in config.toml.example
1 parent e1e60c3 commit 2c93fd2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
 

‎src/bootstrap/config.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,7 @@ impl Default for StringOrBool {
293293
#[serde(deny_unknown_fields, rename_all = "kebab-case")]
294294
struct Rust {
295295
optimize: Option<bool>,
296+
debug: Option<bool>,
296297
codegen_units: Option<u32>,
297298
codegen_units_std: Option<u32>,
298299
debug_assertions: Option<bool>,
@@ -301,25 +302,24 @@ struct Rust {
301302
debuginfo_level_std: Option<u32>,
302303
debuginfo_level_tools: Option<u32>,
303304
debuginfo_level_tests: Option<u32>,
304-
parallel_compiler: Option<bool>,
305305
backtrace: Option<bool>,
306+
incremental: Option<bool>,
307+
parallel_compiler: Option<bool>,
306308
default_linker: Option<String>,
307309
channel: Option<String>,
308310
musl_root: Option<String>,
309311
rpath: Option<bool>,
312+
verbose_tests: Option<bool>,
310313
optimize_tests: Option<bool>,
311314
codegen_tests: Option<bool>,
312315
ignore_git: Option<bool>,
313-
debug: Option<bool>,
314316
dist_src: Option<bool>,
315-
verbose_tests: Option<bool>,
316-
incremental: Option<bool>,
317317
save_toolstates: Option<String>,
318318
codegen_backends: Option<Vec<String>>,
319319
codegen_backends_dir: Option<String>,
320320
lld: Option<bool>,
321-
lldb: Option<bool>,
322321
llvm_tools: Option<bool>,
322+
lldb: Option<bool>,
323323
deny_warnings: Option<bool>,
324324
backtrace_on_ice: Option<bool>,
325325
verify_llvm_ir: Option<bool>,

0 commit comments

Comments
 (0)
Please sign in to comment.