You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rollup merge of rust-lang#139853 - Kobzol:lld-llvm-config, r=onur-ozkan
Disable combining LLD with external llvm-config
When an external `llvm-config` is used, we don't really know anything about the external LLD, as we don't build it ourselves. Therefore, we probably shouldn't allow using `rust-lld` nor copy it to the target sysroot.
Fixes: rust-lang#139477
CC ``@cuviper``
r? ``@onur-ozkan``
try-job: dist-x86_64-linux
try-job: dist-aarch64-linux
// We're using a user-controlled version of LLVM. The user has explicitly told us whether the version has our patches.
3277
+
// (They might be wrong, but that's not a supported use-case.)
3278
+
// In particular, this tries to support `submodules = false` and `patches = false`, for using a newer version of LLVM that's not through `rust-lang/llvm-project`.
// We're using a user-controlled version of LLVM. The user has explicitly told us whether the version has our patches.
876
-
// (They might be wrong, but that's not a supported use-case.)
877
-
// In particular, this tries to support `submodules = false` and `patches = false`, for using a newer version of LLVM that's not through `rust-lang/llvm-project`.
0 commit comments