We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d189e9f commit fae11ccCopy full SHA for fae11cc
2 files changed
.github/workflows/ci.yml
@@ -96,6 +96,7 @@ jobs:
96
97
- name: Build
98
run: |
99
+ ln -s /usr/lib/libgccjit.so /home/runner/.rustup/toolchains/nightly-2026-04-29-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/codegen-backends/lib/x86_64-unknown-linux-gnu/libgccjit.so
100
./y.sh build --sysroot
101
./y.sh test --cargo-tests
102
build_system/src/config.rs
@@ -394,8 +394,8 @@ impl ConfigInfo {
394
rustflags.push(format!("-Zcodegen-backend={backend}"));
395
} else {
396
rustflags.extend_from_slice(&[
397
- "--sysroot".to_string(),
398
- self.sysroot_path.clone(),
+ /*"--sysroot".to_string(),
+ self.sysroot_path.clone(),*/
399
format!("-Zcodegen-backend={}", self.cg_backend_path),
400
]);
401
}
0 commit comments