From 61976c9b688f30815cf1b5bd465a327a3fc3d811 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 | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 428b6f9c1..754cfd8ef 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2336,8 +2336,6 @@ impl Build { cmd.args.push("-isysroot".into()); cmd.args.push(sdk_path); - // TODO: Remove this once Apple stops accepting apps built with Xcode 13 - cmd.args.push("-fembed-bitcode".into()); Ok(()) }