From c1e87803e129d62c4d13c976abb20ee89b73b2eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Isnard?= Date: Mon, 28 Nov 2022 10:50:00 +0100 Subject: [PATCH] hack: Temporarily disable vendoring on iOS, until downstream fixes --- build.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.rs b/build.rs index 6ffcbc1..4fbc524 100644 --- a/build.rs +++ b/build.rs @@ -59,8 +59,9 @@ fn main() -> Result<(), Box> { if target_family != "windows" { println!("cargo:rustc-link-search={}", bindings_folder); println!("cargo:rustc-link-lib=static=ctanker"); + // FIXME: Re-enable vendoring on iOS after downstream fixes if !cfg!(feature = "without_vendored_libcxx") - && (target_triplet.contains("-linux-android") || target_triplet.contains("-apple-ios")) + && (target_triplet.contains("-linux-android")/* || target_triplet.contains("-apple-ios") */) { println!("cargo:rustc-link-lib=static=cxx_vendored") }