We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a62583 commit d262aecCopy full SHA for d262aec
.github/workflows/main.yml
@@ -253,6 +253,7 @@ jobs:
253
shell: bash
254
run: |
255
PATH="/usr/local/cuda/bin:$PATH" cargo test --manifest-path dev-tools/cc-test/Cargo.toml --features test_cuda
256
+ PATH="/usr/local/cuda/bin:$PATH" CXX=clang++ cargo test --manifest-path dev-tools/cc-test/Cargo.toml --features test_cuda
257
258
msrv:
259
name: MSRV
src/lib.rs
@@ -2093,7 +2093,7 @@ impl Build {
2093
2094
// Pass `--target` with the LLVM target to properly
2095
// configure Clang even when cross-compiling.
2096
- cmd.args.push(format!("--target={llvm_target}").into());
+ cmd.push_cc_arg(format!("--target={llvm_target}").into());
2097
}
2098
2099
ToolFamily::Msvc { clang_cl } => {
0 commit comments