Skip to content

Commit

Permalink
Default to the medium code model on OpenHarmony LoongArch target
Browse files Browse the repository at this point in the history
The context for this is rust-lang#130266: setting the medium code model for the
'loongarch64-linux-ohos' target.
  • Loading branch information
heiher committed Oct 18, 2024
1 parent d9c4b8d commit 275ec06
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use crate::spec::{SanitizerSet, Target, TargetOptions, base};
use crate::spec::{CodeModel, SanitizerSet, Target, TargetOptions, base};

pub(crate) fn target() -> Target {
Target {
Expand All @@ -13,6 +13,7 @@ pub(crate) fn target() -> Target {
data_layout: "e-m:e-p:64:64-i64:64-i128:128-n32:64-S128".into(),
arch: "loongarch64".into(),
options: TargetOptions {
code_model: Some(CodeModel::Medium),
cpu: "generic".into(),
features: "+f,+d".into(),
llvm_abiname: "lp64d".into(),
Expand Down

0 comments on commit 275ec06

Please sign in to comment.