diff --git a/crates/firewheel-cpal/build.rs b/crates/firewheel-cpal/build.rs deleted file mode 100644 index ee08de9c..00000000 --- a/crates/firewheel-cpal/build.rs +++ /dev/null @@ -1,8 +0,0 @@ -fn main() { - let target_os = std::env::var("CARGO_CFG_TARGET_OS").unwrap(); - if target_os == "android" { - // This includes 'lib//libc++_shared.so' - // Firewheel needs it currently on Android builds - println!("cargo:rustc-link-lib=dylib=c++_shared"); - } -}