-
Couldn't load subscription status.
- Fork 13.9k
Ensure LLVM is in the link path for "fulldeps" tests #70591
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) |
|
@bors r+ |
|
📌 Commit c5ee425eba6a0b8c86bf6828f5452fb5c766d4eb has been approved by |
|
@bors r- I forgot |
This is a follow-up to rust-lang#70123, which added `llvm-config --libdir` to the `LIBRARY_PATH` for rustc tools. We need the same for "run-make-fulldeps" and "ui-fulldeps" tests which depend on compiler libraries, implicitly needing to link to `-lLLVM` as well.
c5ee425 to
6067315
Compare
|
@bors r=Mark-Simulacrum |
|
📌 Commit 6067315 has been approved by |
|
⌛ Testing commit 6067315 with merge d1b6926efee2f0921f068ee10a3f08e75a5df6d1... |
|
💔 Test failed - checks-azure |
|
@bors retry |
…rk-Simulacrum Ensure LLVM is in the link path for "fulldeps" tests This is a follow-up to rust-lang#70123, which added `llvm-config --libdir` to the `LIBRARY_PATH` for rustc tools. We need the same for "run-make-fulldeps" and "ui-fulldeps" tests which depend on compiler libraries, implicitly needing to link to `-lLLVM` as well.
Rollup of 6 pull requests Successful merges: - rust-lang#70511 (Add `-Z dump-mir-dataflow` flag for dumping dataflow results visualization) - rust-lang#70522 (Improve error messages for raw strings (rust-lang#60762)) - rust-lang#70547 (Add `can_unwind` field to `FnAbi`) - rust-lang#70591 (Ensure LLVM is in the link path for "fulldeps" tests) - rust-lang#70627 (Use place directly its copy) - rust-lang#70652 (Add git repo address to unstable book) Failed merges: - rust-lang#70634 (Remove some reexports in `rustc_middle`) r? @ghost
This is a follow-up to #70123, which added
llvm-config --libdirto theLIBRARY_PATHfor rustc tools. We need the same for "run-make-fulldeps"and "ui-fulldeps" tests which depend on compiler libraries, implicitly
needing to link to
-lLLVMas well.