Skip to content

Commit

Permalink
Remove -fembed-bitcode flag (#812)
Browse files Browse the repository at this point in the history
Apple has recently stopped accepting apps built with any Xcode version
below 14.1, and rejects apps built with bitcode starting with Xcode 14.
  • Loading branch information
keith authored Sep 23, 2023
1 parent d765f30 commit ffdf356
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(())
}

Expand Down

0 comments on commit ffdf356

Please sign in to comment.