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.
InstallArgs::dylib_path
1 parent 19d6e05 commit 0f71487Copy full SHA for 0f71487
crates/cargo-gpu/src/args.rs
@@ -42,10 +42,6 @@ pub struct BuildArgs {
42
reason = "cmdline args have many bools"
43
)]
44
pub struct InstallArgs {
45
- /// path to the `rustc_codegen_spirv` dylib
46
- #[clap(long, hide(true), default_value = "INTERNALLY_SET")]
47
- pub dylib_path: std::path::PathBuf,
48
-
49
/// Directory containing the shader crate to compile.
50
#[clap(long, default_value = "./")]
51
pub shader_crate: std::path::PathBuf,
crates/cargo-gpu/src/install.rs
@@ -210,7 +210,6 @@ package = "rustc_codegen_spirv"
210
.context("writing target spec files")?;
211
}
212
213
- self.spirv_install.dylib_path.clone_from(&dest_dylib_path);
214
Ok((dest_dylib_path, toolchain_channel))
215
216
0 commit comments