Rename internal precompiled flag to prebuilt

This commit is contained in:
Jan Van Bruggen 2022-09-06 15:03:42 -06:00
parent 68be131bd7
commit 5717f698d8
No known key found for this signature in database
GPG key ID: FE2A4E38E0FA6134
2 changed files with 9 additions and 9 deletions

View file

@ -499,7 +499,7 @@ pub fn build(
LinkingStrategy::Surgical
};
let precompiled = if matches.is_present(FLAG_PREBUILT) {
let prebuilt = if matches.is_present(FLAG_PREBUILT) {
matches.value_of(FLAG_PREBUILT) == Some("true")
} else {
// When compiling for a different target, default to assuming a prebuilt platform.
@ -547,7 +547,7 @@ pub fn build(
emit_timings,
link_type,
linking_strategy,
precompiled,
prebuilt,
threading,
wasm_dev_stack_bytes,
build_ordering,