-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fd2c811
commit ae5d448
Showing
4 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
compiler/rustc_target/src/spec/targets/x86_64_unknown_trusty.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// Trusty OS target for X86_64. | ||
|
||
use crate::spec::{ | ||
LinkSelfContainedDefault, PanicStrategy, RelroLevel, StackProbeType, Target, TargetOptions, | ||
}; | ||
|
||
pub(crate) fn target() -> Target { | ||
Target { | ||
llvm_target: "x86_64-unknown-unknown-musl".into(), | ||
metadata: crate::spec::TargetMetadata { | ||
description: Some("x86_64 Trusty".into()), | ||
tier: Some(3), | ||
host_tools: Some(false), | ||
std: Some(false), | ||
}, | ||
pointer_width: 64, | ||
data_layout: | ||
"e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-i128:128-f80:128-n8:16:32:64-S128".into(), | ||
arch: "x86_64".into(), | ||
options: TargetOptions { | ||
executables: true, | ||
max_atomic_width: Some(64), | ||
panic_strategy: PanicStrategy::Abort, | ||
os: "trusty".into(), | ||
link_self_contained: LinkSelfContainedDefault::InferredForMusl, | ||
position_independent_executables: true, | ||
static_position_independent_executables: true, | ||
crt_static_default: true, | ||
crt_static_respected: true, | ||
dynamic_linking: false, | ||
plt_by_default: false, | ||
relro_level: RelroLevel::Full, | ||
stack_probes: StackProbeType::Inline, | ||
mcount: "\u{1}_mcount".into(), | ||
..Default::default() | ||
}, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters