about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/bootstrap/src/core/config/config.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bootstrap/src/core/config/config.rs b/src/bootstrap/src/core/config/config.rs
index 0be2e339669..11373e3e411 100644
--- a/src/bootstrap/src/core/config/config.rs
+++ b/src/bootstrap/src/core/config/config.rs
@@ -1166,10 +1166,10 @@ impl Config {
                 Warnings::Default => rust_deny_warnings.unwrap_or(true),
             },
             backtrace_on_ice: rust_backtrace_on_ice.unwrap_or(false),
-            llvm_tests: llvm_tests.unwrap_or_default(),
-            llvm_enzyme: llvm_enzyme.unwrap_or_default(),
+            llvm_tests: llvm_tests.unwrap_or(false),
+            llvm_enzyme: llvm_enzyme.unwrap_or(false),
             llvm_offload: llvm_offload.unwrap_or(false),
-            llvm_plugins: llvm_plugin.unwrap_or_default(),
+            llvm_plugins: llvm_plugin.unwrap_or(false),
             llvm_optimize: llvm_optimize.unwrap_or(true),
             llvm_release_debuginfo: llvm_release_debuginfo.unwrap_or(false),
             llvm_static_stdcpp: llvm_static_libstdcpp.unwrap_or(false),
@@ -1230,7 +1230,7 @@ impl Config {
                 .unwrap_or(vec![CodegenBackendKind::Llvm]),
             rust_verify_llvm_ir: rust_verify_llvm_ir.unwrap_or(false),
             rust_thin_lto_import_instr_limit,
-            rust_randomize_layout: rust_randomize_layout.unwrap_or_default(),
+            rust_randomize_layout: rust_randomize_layout.unwrap_or(false),
             rust_remap_debuginfo: rust_remap_debuginfo.unwrap_or(false),
             rust_new_symbol_mangling,
             rust_profile_use: flags_rust_profile_use.or(rust_profile_use),