We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12608a5 commit 8cdde02Copy full SHA for 8cdde02
compiler/rustc_target/src/spec/nvptx64_nvidia_cuda.rs
@@ -10,9 +10,8 @@ pub fn target() -> Target {
10
options: TargetOptions {
11
os: "cuda".into(),
12
vendor: "nvidia".into(),
13
- linker_flavor: LinkerFlavor::Ptx,
14
- // The linker can be installed from `crates.io`.
15
- linker: Some("rust-ptx-linker".into()),
+ linker_flavor: LinkerFlavor::Embedded,
+ linker: Some("rust-embedded-linker".into()),
16
17
// With `ptx-linker` approach, it can be later overridden via link flags.
18
cpu: "sm_30".into(),
0 commit comments