Skip to content

Commit 1fbf7de

Browse files
authoredMar 10, 2025··
Use link-cplusplus to manage c++ lib linking (#158)
1 parent 81da8d7 commit 1fbf7de

File tree

3 files changed

+2
-17
lines changed

3 files changed

+2
-17
lines changed
 

‎shaderc-sys/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ prefer-static-linking = []
2020

2121
[dependencies]
2222
libc = "0.2"
23+
link-cplusplus = "1.0"
2324

2425
[build-dependencies]
2526
cmake = "^0.1.37"

‎shaderc-sys/build/build.rs

-17
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,6 @@ fn main() {
324324
("linux", _) => {
325325
println!("cargo:rustc-link-search=native={search_dir_str}");
326326
println!("cargo:rustc-link-lib={lib_kind}={lib_name}");
327-
println!("cargo:rustc-link-lib=dylib=stdc++");
328327
return;
329328
}
330329
("windows", "msvc") => {
@@ -337,21 +336,18 @@ fn main() {
337336
println!("cargo:warning=shaderc: Windows MinGW static build is experimental");
338337
println!("cargo:rustc-link-search=native={search_dir_str}");
339338
println!("cargo:rustc-link-lib={lib_kind}={lib_name}");
340-
println!("cargo:rustc-link-lib=dylib=stdc++");
341339
return;
342340
}
343341
("macos", _) => {
344342
println!("cargo:warning=shaderc: macOS static build is experimental");
345343
println!("cargo:rustc-link-search=native={search_dir_str}");
346344
println!("cargo:rustc-link-lib={lib_kind}={lib_name}");
347-
println!("cargo:rustc-link-lib=dylib=c++");
348345
return;
349346
}
350347
("ios", _) => {
351348
println!("cargo:warning=shaderc: macOS static build is experimental");
352349
println!("cargo:rustc-link-search=native={search_dir_str}");
353350
println!("cargo:rustc-link-lib={lib_kind}={lib_name}");
354-
println!("cargo:rustc-link-lib=dylib=c++");
355351
return;
356352
}
357353
(_, _) => {
@@ -398,17 +394,4 @@ fn main() {
398394
lib_path.push("lib");
399395
println!("cargo:rustc-link-search=native={}", lib_path.display());
400396
println!("cargo:rustc-link-lib=static={SHADERC_STATIC_LIB}");
401-
402-
emit_std_cpp_link();
403-
}
404-
405-
fn emit_std_cpp_link() {
406-
let target_os = env::var("CARGO_CFG_TARGET_OS").unwrap();
407-
let target_env = env::var("CARGO_CFG_TARGET_ENV").unwrap();
408-
409-
match (target_os.as_str(), target_env.as_str()) {
410-
("linux", _) | ("windows", "gnu") => println!("cargo:rustc-link-lib=dylib=stdc++"),
411-
("macos", _) => println!("cargo:rustc-link-lib=dylib=c++"),
412-
_ => {}
413-
}
414397
}

‎shaderc-sys/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
#![allow(non_camel_case_types)]
5050

5151
extern crate libc;
52+
extern crate link_cplusplus;
5253
use libc::{c_char, c_int, c_void, size_t};
5354

5455
pub enum ShadercCompiler {}

0 commit comments

Comments
 (0)
Please sign in to comment.