Skip to content

Commit a909541

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

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/bootstrap/config.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -243,14 +243,14 @@ struct Install {
243243
#[derive(Deserialize, Default)]
244244
#[serde(deny_unknown_fields, rename_all = "kebab-case")]
245245
struct Llvm {
246-
ccache: Option<StringOrBool>,
247-
ninja: Option<bool>,
248-
assertions: Option<bool>,
249246
optimize: Option<bool>,
250247
thin_lto: Option<bool>,
251248
release_debuginfo: Option<bool>,
249+
assertions: Option<bool>,
250+
ccache: Option<StringOrBool>,
252251
version_check: Option<bool>,
253252
static_libstdcpp: Option<bool>,
253+
ninja: Option<bool>,
254254
targets: Option<String>,
255255
experimental_targets: Option<String>,
256256
link_jobs: Option<u32>,

0 commit comments

Comments
 (0)