Skip to content

Commit

Permalink
Implement CodeModel
Browse files Browse the repository at this point in the history
  • Loading branch information
sapir committed Aug 4, 2024
1 parent f7f9a3f commit f579dee
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/base.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,19 @@ pub fn compile_codegen_unit(
// NOTE: Rust relies on LLVM doing wrapping on overflow.
context.add_command_line_option("-fwrapv");

if let Some(model) = tcx.sess.code_model() {
use rustc_target::spec::CodeModel;

context.add_command_line_option(match model {
CodeModel::Tiny => "-mcmodel=tiny",
CodeModel::Small => "-mcmodel=small",
CodeModel::Kernel => "-mcmodel=kernel",
CodeModel::Medium => "-mcmodel=medium",
CodeModel::Large => "-mcmodel=large",
});
}

if tcx.sess.relocation_model() == rustc_target::spec::RelocModel::Static {
context.add_command_line_option("-mcmodel=kernel");
context.add_command_line_option("-fno-pie");
}

Expand Down

0 comments on commit f579dee

Please sign in to comment.