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/05-add_aarch64.patch | |
parent | 29035353ba7e200ea35bb656d5f7b4f8406d5dca (diff) |
rust: Updste to 1.62.0
Diffstat (limited to 'lang/rust_host/patches/05-add_aarch64.patch')
-rw-r--r-- | lang/rust_host/patches/05-add_aarch64.patch | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/lang/rust_host/patches/05-add_aarch64.patch b/lang/rust_host/patches/05-add_aarch64.patch new file mode 100644 index 0000000..0d21d6f --- /dev/null +++ b/lang/rust_host/patches/05-add_aarch64.patch @@ -0,0 +1,27 @@ +--- /dev/null ++++ b/compiler/rustc_target/src/spec/aarch64_openwrt_linux_musl.rs +@@ -0,0 +1,14 @@ ++use crate::spec::{Target, TargetOptions}; ++ ++pub fn target() -> Target { ++ let mut base = super::linux_musl_base::opts(); ++ base.max_atomic_width = Some(128); ++ ++ Target { ++ llvm_target: "aarch64-unknown-linux-musl".into(), ++ pointer_width: 64, ++ data_layout: "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128".into(), ++ arch: "aarch64".into(), ++ options: TargetOptions { mcount: "\u{1}_mcount".into(), ..base }, ++ } ++} +--- a/compiler/rustc_target/src/spec/mod.rs ++++ b/compiler/rustc_target/src/spec/mod.rs +@@ -1016,6 +1016,7 @@ + ("mips64-openwrt-linux-musl", mips64_openwrt_linux_musl), + ("mips-openwrt-linux-musl", mips_openwrt_linux_musl), + ("mipsel-openwrt-linux-musl", mipsel_openwrt_linux_musl), ++ ("aarch64-openwrt-linux-musl", aarch64_openwrt_linux_musl), + } + + /// Warnings encountered when parsing the target `json`. |