-
Notifications
You must be signed in to change notification settings - Fork 90
Add CI checks with LLVM sysroot #858
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
Open
GuillaumeGomez
wants to merge
2
commits into
rust-lang:master
Choose a base branch
from
GuillaumeGomez:llvm-sysroot
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,9 +6,10 @@ use std::{env as std_env, fs}; | |
| use boml::Toml; | ||
| use boml::types::TomlValue; | ||
|
|
||
| use crate::build::link_libgccjit_in_sysroot; | ||
| use crate::utils::{ | ||
| create_dir, create_symlink, get_os_name, get_sysroot_dir, run_command_with_output, | ||
| rustc_version_info, split_args, | ||
| create_dir, create_symlink, get_os_name, get_rustup_sysroot_dir, get_sysroot_dir, | ||
| run_command_with_output, rustc_version_info, split_args, | ||
| }; | ||
|
|
||
| #[derive(Default, PartialEq, Eq, Clone, Copy, Debug)] | ||
|
|
@@ -314,6 +315,7 @@ impl ConfigInfo { | |
| &mut self, | ||
| env: &mut HashMap<String, String>, | ||
| use_system_gcc: bool, | ||
| with_llvm_sysroot: bool, | ||
|
Comment on lines
317
to
+318
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would use 1 or 2 enums here to make the caller code clearer.
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In this case, the added value is pretty minimal imo. |
||
| ) -> Result<(), String> { | ||
| env.insert("CARGO_INCREMENTAL".to_string(), "0".to_string()); | ||
|
|
||
|
|
@@ -393,11 +395,10 @@ impl ConfigInfo { | |
| // by its build system directly so no need to set it ourselves. | ||
| rustflags.push(format!("-Zcodegen-backend={backend}")); | ||
| } else { | ||
| rustflags.extend_from_slice(&[ | ||
| "--sysroot".to_string(), | ||
| self.sysroot_path.clone(), | ||
| format!("-Zcodegen-backend={}", self.cg_backend_path), | ||
| ]); | ||
| if !with_llvm_sysroot { | ||
| rustflags.extend_from_slice(&["--sysroot".to_string(), self.sysroot_path.clone()]); | ||
| } | ||
| rustflags.push(format!("-Zcodegen-backend={}", self.cg_backend_path)); | ||
| } | ||
|
|
||
| // This environment variable is useful in case we want to change options of rustc commands. | ||
|
|
@@ -454,6 +455,13 @@ impl ConfigInfo { | |
| if !env.contains_key("RUSTC_LOG") { | ||
| env.insert("RUSTC_LOG".to_string(), "warn".to_string()); | ||
| } | ||
|
|
||
| // In this case, it means we need to symlink `libgccjit.so` into the rustup sysroot. | ||
| if with_llvm_sysroot { | ||
| let sysroot_path = get_rustup_sysroot_dir()?; | ||
| link_libgccjit_in_sysroot(self, &sysroot_path)?; | ||
| } | ||
|
|
||
| Ok(()) | ||
| } | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Please add a comment to mention that we always build the sysroot with cg_gcc and we don't need to build the sysroot with cg_llvm since it's already distributed by rustup and we can just not provide
--sysrootto use it.