Skip to content

Commit

Permalink
reorder TomlTarget struct's fields based on the order in config.toml.…
Browse files Browse the repository at this point in the history
…example
  • Loading branch information
Guanqun Lu committed Oct 24, 2019
1 parent 2c93fd2 commit 5defe06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bootstrap/config.rs
Expand Up @@ -333,13 +333,13 @@ struct Rust {
#[derive(Deserialize, Default)]
#[serde(deny_unknown_fields, rename_all = "kebab-case")]
struct TomlTarget {
llvm_config: Option<String>,
llvm_filecheck: Option<String>,
cc: Option<String>,
cxx: Option<String>,
ar: Option<String>,
ranlib: Option<String>,
linker: Option<String>,
llvm_config: Option<String>,
llvm_filecheck: Option<String>,
android_ndk: Option<String>,
crt_static: Option<bool>,
musl_root: Option<String>,
Expand Down

0 comments on commit 5defe06

Please sign in to comment.