-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
Add libLLVM.so
to the target libdir when download-rustc is enabled
#110263
Conversation
Previously, we would only add it to the host libdir, which meant it couldn't be loaded by `ui-fulldeps` tests that used rustc_private.
(rustbot has picked a reviewer for you, use r? to override) |
LGTM |
This fixes a regression from #110121:
@bors p=1 |
☀️ Test successful - checks-actions |
Finished benchmarking commit (276fa29): comparison URL. Overall result: no relevant changes - no action needed@rustbot label: -perf-regression Instruction countThis benchmark run did not return any relevant results for this metric. Max RSS (memory usage)This benchmark run did not return any relevant results for this metric. CyclesThis benchmark run did not return any relevant results for this metric. |
…rtlarsan68 Don't special-case download-rustc in `maybe_install_llvm` This is no longer necessary now that the llvm in `rust-dev` matches the one in `rustc`. cc rust-lang#110490 (comment), rust-lang#110263
Previously, we would only add it to the host libdir, which meant it couldn't be loaded by
ui-fulldeps
tests that used rustc_private.Fixes #110225, fixes #110226.