From ffdf35676298d4ae3626415c4e68f11b60f00116 Mon Sep 17 00:00:00 2001 From: Keith Smiley Date: Sat, 23 Sep 2023 10:04:32 -0700 Subject: [PATCH] Remove -fembed-bitcode flag (#812) Apple has recently stopped accepting apps built with any Xcode version below 14.1, and rejects apps built with bitcode starting with Xcode 14. --- src/lib.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index c87e9b0d..ca8c9b8a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2530,11 +2530,6 @@ impl Build { cmd.args.push(sdk_path); } - // TODO: Remove this once Apple stops accepting apps built with Xcode 13 - if !is_mac { - cmd.args.push("-fembed-bitcode".into()); - } - Ok(()) }