diff options
author | Donald Hoskins <grommish@gmail.com> | 2022-07-18 01:07:17 +0000 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2022-09-11 13:16:26 +0200 |
commit | 5bbd4b2038f612218895e2ceb6c80ae80ea8a6b6 (patch) | |
tree | fb57301b720ff425a7c939ca0d15f0e6327bc8b2 /lang/rust_host/patches/09-add_x86_64.patch | |
parent | 29035353ba7e200ea35bb656d5f7b4f8406d5dca (diff) |
rust: Updste to 1.62.0
Diffstat (limited to 'lang/rust_host/patches/09-add_x86_64.patch')
-rw-r--r-- | lang/rust_host/patches/09-add_x86_64.patch | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/lang/rust_host/patches/09-add_x86_64.patch b/lang/rust_host/patches/09-add_x86_64.patch new file mode 100644 index 0000000..b1e2b4b --- /dev/null +++ b/lang/rust_host/patches/09-add_x86_64.patch @@ -0,0 +1,38 @@ +--- /dev/null ++++ b/compiler/rustc_target/src/spec/x86_64_openwrt_linux_musl.rs +@@ -0,0 +1,25 @@ ++use crate::spec::{LinkerFlavor, SanitizerSet, StackProbeType, Target}; ++ ++pub fn target() -> Target { ++ let mut base = super::linux_musl_base::opts(); ++ base.cpu = "x86-64".into(); ++ base.max_atomic_width = Some(64); ++ base.pre_link_args.entry(LinkerFlavor::Gcc).or_default().push("-m64".into()); ++ // don't use probe-stack=inline-asm until rust#83139 and rust#84667 are resolved ++ base.stack_probes = StackProbeType::Call; ++ base.static_position_independent_executables = true; ++ base.supported_sanitizers = SanitizerSet::ADDRESS ++ | SanitizerSet::CFI ++ | SanitizerSet::LEAK ++ | SanitizerSet::MEMORY ++ | SanitizerSet::THREAD; ++ ++ Target { ++ llvm_target: "x86_64-unknown-linux-musl".into(), ++ pointer_width: 64, ++ data_layout: "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" ++ .into(), ++ arch: "x86_64".into(), ++ options: base, ++ } ++} +--- a/compiler/rustc_target/src/spec/mod.rs ++++ b/compiler/rustc_target/src/spec/mod.rs +@@ -1020,6 +1020,7 @@ + ("armv7-openwrt-linux-muslgnueabi", armv7_openwrt_linux_muslgnueabi), + ("armv7-openwrt-linux-muslgnueabihf", armv7_openwrt_linux_muslgnueabihf), + ("powerpc64-openwrt-linux-musl", powerpc64_openwrt_linux_musl), ++ ("x86_64-openwrt-linux-musl", x86_64_openwrt_linux_musl), + } + + /// Warnings encountered when parsing the target `json`. |