We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d7ff4e commit 6dc4fe5Copy full SHA for 6dc4fe5
src/bootstrap/native.rs
@@ -949,6 +949,10 @@ impl Step for Lld {
949
.define("LLVM_CONFIG_PATH", llvm_config_shim)
950
.define("LLVM_INCLUDE_TESTS", "OFF");
951
952
+ if builder.config.llvm_allow_old_toolchain {
953
+ cfg.define("LLVM_TEMPORARILY_ALLOW_OLD_TOOLCHAIN", "YES");
954
+ }
955
+
956
// While we're using this horrible workaround to shim the execution of
957
// llvm-config, let's just pile on more. I can't seem to figure out how
958
// to build LLD as a standalone project and also cross-compile it at the
0 commit comments