We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 203a57f + 03e5c7c commit 621ba2cCopy full SHA for 621ba2c
src/lib.rs
@@ -2279,18 +2279,8 @@ impl Build {
2279
2280
cmd.args.push("-isysroot".into());
2281
cmd.args.push(sdk_path);
2282
+ // TODO: Remove this once Apple stops accepting apps built with Xcode 13
2283
cmd.args.push("-fembed-bitcode".into());
- /*
2284
- * TODO we probably ultimately want the -fembed-bitcode-marker flag
2285
- * but can't have it now because of an issue in LLVM:
2286
- * https://github.com/rust-lang/cc-rs/issues/301
2287
- * https://github.com/rust-lang/rust/pull/48896#comment-372192660
2288
- */
2289
2290
- if self.get_opt_level()? == "0" {
2291
- cmd.args.push("-fembed-bitcode-marker".into());
2292
- }
2293
2294
2295
Ok(())
2296
}
0 commit comments