We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
cargo_build_script
SYSROOT
1 parent 89d207b commit 6f79458Copy full SHA for 6f79458
cargo/cargo_build_script_runner/bin.rs
@@ -89,7 +89,7 @@ fn run_buildrs() -> Result<(), String> {
89
}
90
91
if let Some(cc_path) = env::var_os("CC") {
92
- let mut cc_path = exec_root.join(cc_path);
+ let mut cc_path = exec_root.join(cc_path).into_os_string();
93
if let Some(sysroot_path) = env::var_os("SYSROOT") {
94
cc_path.push(" --sysroot=");
95
cc_path.push(&exec_root.join(sysroot_path));
0 commit comments