-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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
Force static linking of LLVM #37617
Force static linking of LLVM #37617
Conversation
Run llvm-config with "--link-static" if available, to force static linking of LLVM. This option was added in LLVM 3.8. Fixes rust-lang#36854 See also: rust-lang#36996
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @arielb1 (or someone else) soon. If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. Due to the way GitHub handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes. Please see the contribution instructions for more information. |
@bors: r+ Thanks! |
📌 Commit bcfbbd8 has been approved by |
This broke building Rust on Ubuntu 16.04 against system llvm AFAICT. The build fails when building th rustc_llvm crate with this output:
Ubuntu 16.04 ships with llvm 3.8 but this
|
FWIW, Ubuntu 16.10 also ships with llvm 3.8 so this is probably broken there as well but I didn't check. |
:\ LLVM version what even are you? |
Opened a PR for that: #37667 |
Run
llvm-config
with--link-static
if available, to force static linking of LLVM.This option was added in LLVM 3.8.
This is my first pull request, any feedback is welcome!
Fixes #36854
See also: #36996