diff options
| author | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2025-08-08 11:24:28 +0000 |
|---|---|---|
| committer | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2025-08-08 11:24:28 +0000 |
| commit | 8f648d7185a8455151951f30357b93dee726c6cb (patch) | |
| tree | a9be6780ef5df4aeae0c5fbeb9f35b3ee0a1999c /compiler/rustc_codegen_ssa/src | |
| parent | ee38bc06ce68d3f426f191a012ab529eceecb700 (diff) | |
| download | rust-8f648d7185a8455151951f30357b93dee726c6cb.tar.gz rust-8f648d7185a8455151951f30357b93dee726c6cb.zip | |
Remove bitcode_llvm_cmdline
It used to be necessary on Apple platforms to ship with the App Store, but XCode 15 has stopped embedding LLVM bitcode and the App Store no longer accepts apps with bitcode embedded.
Diffstat (limited to 'compiler/rustc_codegen_ssa/src')
| -rw-r--r-- | compiler/rustc_codegen_ssa/src/back/write.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/rustc_codegen_ssa/src/back/write.rs b/compiler/rustc_codegen_ssa/src/back/write.rs index 17dcca75398..7ceb9885716 100644 --- a/compiler/rustc_codegen_ssa/src/back/write.rs +++ b/compiler/rustc_codegen_ssa/src/back/write.rs @@ -99,7 +99,6 @@ pub struct ModuleConfig { pub emit_obj: EmitObj, pub emit_thin_lto: bool, pub emit_thin_lto_summary: bool, - pub bc_cmdline: String, // Miscellaneous flags. These are mostly copied from command-line // options. @@ -216,7 +215,6 @@ impl ModuleConfig { sess.opts.output_types.contains_key(&OutputType::ThinLinkBitcode), false ), - bc_cmdline: sess.target.bitcode_llvm_cmdline.to_string(), verify_llvm_ir: sess.verify_llvm_ir(), lint_llvm_ir: sess.opts.unstable_opts.lint_llvm_ir, |
