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.
2 parents f5594cb + c1e8780 commit bfe9304Copy full SHA for bfe9304
build.rs
@@ -59,8 +59,9 @@ fn main() -> Result<(), Box<dyn Error>> {
59
if target_family != "windows" {
60
println!("cargo:rustc-link-search={}", bindings_folder);
61
println!("cargo:rustc-link-lib=static=ctanker");
62
+ // FIXME: Re-enable vendoring on iOS after downstream fixes
63
if !cfg!(feature = "without_vendored_libcxx")
- && (target_triplet.contains("-linux-android") || target_triplet.contains("-apple-ios"))
64
+ && (target_triplet.contains("-linux-android")/* || target_triplet.contains("-apple-ios") */)
65
{
66
println!("cargo:rustc-link-lib=static=cxx_vendored")
67
}
0 commit comments