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.
1 parent 69d1c84 commit dbc6e16Copy full SHA for dbc6e16
bin_tests/src/lib.rs
@@ -100,7 +100,9 @@ fn inner_build_artifact(c: &ArtifactsBuild) -> anyhow::Result<PathBuf> {
100
ArtifactType::ExecutablePackage | ArtifactType::Bin => artifact_path.push(&c.name),
101
ArtifactType::CDylib => {
102
let name = "lib".to_owned()
103
- + c.lib_name_override.as_deref().unwrap_or(&c.name.replace('-', "_"))
+ + c.lib_name_override
104
+ .as_deref()
105
+ .unwrap_or(&c.name.replace('-', "_"))
106
+ "."
107
+ shared_lib_extension(
108
c.triple_target
0 commit comments