Skip to content

Commit c808fbe

Browse files
committed
Add an option to omit LLVM bitcode from rlibs.
Because it's only needed when doing LTO, so including it all the time wastes time and disk space.
1 parent 0f0c640 commit c808fbe

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/librustc/session/config.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1222,6 +1222,8 @@ options! {CodegenOptions, CodegenSetter, basic_codegen_options,
12221222
"compile the program with profiling instrumentation"),
12231223
profile_use: Option<PathBuf> = (None, parse_opt_pathbuf, [TRACKED],
12241224
"use the given `.profdata` file for profile-guided optimization"),
1225+
no_rlib_bitcode: bool = (false, parse_bool, [TRACKED],
1226+
"don't put LLVM bitcode in rlib files"),
12251227
}
12261228

12271229
options! {DebuggingOptions, DebuggingSetter, basic_debugging_options,

src/librustc_codegen_ssa/back/write.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -383,9 +383,11 @@ pub fn start_async_codegen<B: ExtraBackendMethods>(
383383

384384
// Emit compressed bitcode files for the crate if we're emitting an rlib.
385385
// Whenever an rlib is created, the bitcode is inserted into the archive in
386-
// order to allow LTO against it.
386+
// order to allow LTO against it (unless --no-rlib-bitcode is specified).
387387
if need_crate_bitcode_for_rlib(sess) {
388-
modules_config.emit_bc_compressed = true;
388+
if !sess.opts.cg.no_rlib_bitcode {
389+
modules_config.emit_bc_compressed = true;
390+
}
389391
allocator_config.emit_bc_compressed = true;
390392
}
391393

0 commit comments

Comments
 (0)