From 91e514a217aebcda7589c2b180ace81769670acd Mon Sep 17 00:00:00 2001 From: Keith Smiley Date: Mon, 5 Jun 2023 08:53:21 -0700 Subject: [PATCH] Remove -fembed-bitcode flag 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 c87e9b0d9..ca8c9b8a5 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(()) }