-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Don't copy llvm tools to sysroot when using download-ci-llvm #91720
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
(rust-highfive has picked a reviewer for you, use r? to override) |
8db2bf0
to
faf407d
Compare
@Mark-Simulacrum I've updated the PR to copy each tool that exists on disk. |
@bors r+ p=1 (given ~widespread breakage) |
📌 Commit faf407d has been approved by |
…k-Simulacrum Don't copy llvm tools to sysroot when using download-ci-llvm Fixes rust-lang#91710
⌛ Testing commit faf407d with merge b50b92ec1f95b1ea5b7b087d79103f17c5bfac27... |
💔 Test failed - checks-actions |
@bors retry |
@@ -1173,7 +1173,12 @@ impl Step for Assemble { | |||
// (e.g. the `bootimage` crate). | |||
for tool in LLVM_TOOLS { | |||
let tool_exe = exe(tool, target_compiler.host); | |||
builder.copy(&llvm_bin_dir.join(&tool_exe), &libdir_bin.join(&tool_exe)); | |||
let src_path = llvm_bin_dir.join(&tool_exe); | |||
// When using `donwload-ci-llvm`, some of the tools |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
*download
☀️ Test successful - checks-actions |
Finished benchmarking commit (4a66a70): comparison url. Summary: This benchmark run did not return any relevant changes. If you disagree with this performance assessment, please file an issue in rust-lang/rustc-perf. @rustbot label: -perf-regression |
Fixes #91710