Skip to content

Commit e3968be

Browse files
committed
Add OpenHarmony targets
- `aarch64-unknown-linux-ohos` - `armv7-unknown-linux-ohos`
1 parent dd19135 commit e3968be

File tree

15 files changed

+238
-7
lines changed

15 files changed

+238
-7
lines changed

Cargo.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -868,9 +868,9 @@ dependencies = [
868868

869869
[[package]]
870870
name = "compiler_builtins"
871-
version = "0.1.87"
871+
version = "0.1.89"
872872
source = "registry+https://github.com/rust-lang/crates.io-index"
873-
checksum = "f867ce54c09855ccd135ad4a50c777182a0c7af5ff20a8f537617bd648b10d50"
873+
checksum = "9fc9c2080d347a2c316518840ac9194644a9993dfa1e9778ef38979a339f5d8b"
874874
dependencies = [
875875
"cc",
876876
"rustc-std-workspace-core",
@@ -2879,9 +2879,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
28792879

28802880
[[package]]
28812881
name = "libc"
2882-
version = "0.2.139"
2882+
version = "0.2.140"
28832883
source = "registry+https://github.com/rust-lang/crates.io-index"
2884-
checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79"
2884+
checksum = "99227334921fae1a979cf0bfdfcc6b3e5ce376ef57e16fb6fb3ea2ed6095f80c"
28852885
dependencies = [
28862886
"rustc-std-workspace-core",
28872887
]

compiler/rustc_codegen_llvm/src/back/write.rs

+3
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,8 @@ pub fn target_machine_factory(
214214

215215
let path_mapping = sess.source_map().path_mapping().clone();
216216

217+
let force_emulated_tls = sess.target.force_emulated_tls;
218+
217219
Arc::new(move |config: TargetMachineFactoryConfig| {
218220
let split_dwarf_file =
219221
path_mapping.map_prefix(config.split_dwarf_file.unwrap_or_default()).0;
@@ -239,6 +241,7 @@ pub fn target_machine_factory(
239241
relax_elf_relocations,
240242
use_init_array,
241243
split_dwarf_file.as_ptr(),
244+
force_emulated_tls,
242245
)
243246
};
244247

compiler/rustc_codegen_llvm/src/llvm/ffi.rs

+1
Original file line numberDiff line numberDiff line change
@@ -2257,6 +2257,7 @@ extern "C" {
22572257
RelaxELFRelocations: bool,
22582258
UseInitArray: bool,
22592259
SplitDwarfFile: *const c_char,
2260+
ForceEmulatedTls: bool,
22602261
) -> Option<&'static mut TargetMachine>;
22612262
pub fn LLVMRustDisposeTargetMachine(T: &'static mut TargetMachine);
22622263
pub fn LLVMRustAddLibraryInfo<'a>(

compiler/rustc_llvm/llvm-wrapper/PassWrapper.cpp

+6-1
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,8 @@ extern "C" LLVMTargetMachineRef LLVMRustCreateTargetMachine(
368368
bool EmitStackSizeSection,
369369
bool RelaxELFRelocations,
370370
bool UseInitArray,
371-
const char *SplitDwarfFile) {
371+
const char *SplitDwarfFile,
372+
bool ForceEmulatedTls) {
372373

373374
auto OptLevel = fromRust(RustOptLevel);
374375
auto RM = fromRust(RustReloc);
@@ -400,6 +401,10 @@ extern "C" LLVMTargetMachineRef LLVMRustCreateTargetMachine(
400401
}
401402
Options.RelaxELFRelocations = RelaxELFRelocations;
402403
Options.UseInitArray = UseInitArray;
404+
if (ForceEmulatedTls) {
405+
Options.ExplicitEmulatedTLS = true;
406+
Options.EmulatedTLS = true;
407+
}
403408

404409
if (TrapUnreachable) {
405410
// Tell LLVM to codegen `unreachable` into an explicit trap instruction.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
use crate::spec::{Target, TargetOptions};
2+
3+
use super::SanitizerSet;
4+
5+
pub fn target() -> Target {
6+
let mut base = super::linux_musl_base::opts();
7+
base.env = "ohos".into();
8+
base.crt_static_default = false;
9+
base.max_atomic_width = Some(128);
10+
11+
Target {
12+
// LLVM 15 doesn't support OpenHarmony yet, use a linux target instead.
13+
llvm_target: "aarch64-unknown-linux-musl".into(),
14+
pointer_width: 64,
15+
data_layout: "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128".into(),
16+
arch: "aarch64".into(),
17+
options: TargetOptions {
18+
features: "+reserve-x18".into(),
19+
mcount: "\u{1}_mcount".into(),
20+
force_emulated_tls: true,
21+
supported_sanitizers: SanitizerSet::ADDRESS
22+
| SanitizerSet::CFI
23+
| SanitizerSet::LEAK
24+
| SanitizerSet::MEMORY
25+
| SanitizerSet::MEMTAG
26+
| SanitizerSet::THREAD
27+
| SanitizerSet::HWADDRESS,
28+
..base
29+
},
30+
}
31+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
use crate::spec::{Target, TargetOptions};
2+
3+
// This target is for OpenHarmony on ARMv7 Linux with thumb-mode, but no NEON or
4+
// hardfloat.
5+
6+
pub fn target() -> Target {
7+
// Most of these settings are copied from the armv7_unknown_linux_musleabi
8+
// target.
9+
Target {
10+
// LLVM 15 doesn't support OpenHarmony yet, use a linux target instead.
11+
llvm_target: "armv7-unknown-linux-gnueabi".into(),
12+
pointer_width: 32,
13+
data_layout: "e-m:e-p:32:32-Fi8-i64:64-v128:64:128-a:0:32-n32-S64".into(),
14+
arch: "arm".into(),
15+
16+
options: TargetOptions {
17+
abi: "eabi".into(),
18+
features: "+v7,+thumb2,+soft-float,-neon".into(),
19+
max_atomic_width: Some(64),
20+
env: "ohos".into(),
21+
crt_static_default: false,
22+
mcount: "\u{1}mcount".into(),
23+
force_emulated_tls: true,
24+
..super::linux_musl_base::opts()
25+
},
26+
}
27+
}

compiler/rustc_target/src/spec/mod.rs

+9
Original file line numberDiff line numberDiff line change
@@ -1261,6 +1261,9 @@ supported_targets! {
12611261

12621262
("aarch64-unknown-nto-qnx710", aarch64_unknown_nto_qnx_710),
12631263
("x86_64-pc-nto-qnx710", x86_64_pc_nto_qnx710),
1264+
1265+
("aarch64-unknown-linux-ohos", aarch64_unknown_linux_ohos),
1266+
("armv7-unknown-linux-ohos", armv7_unknown_linux_ohos),
12641267
}
12651268

12661269
/// Cow-Vec-Str: Cow<'static, [Cow<'static, str>]>
@@ -1734,6 +1737,9 @@ pub struct TargetOptions {
17341737

17351738
/// Whether the target supports XRay instrumentation.
17361739
pub supports_xray: bool,
1740+
1741+
/// Forces the use of emulated TLS (__emutls_get_address)
1742+
pub force_emulated_tls: bool,
17371743
}
17381744

17391745
/// Add arguments for the given flavor and also for its "twin" flavors
@@ -1954,6 +1960,7 @@ impl Default for TargetOptions {
19541960
entry_name: "main".into(),
19551961
entry_abi: Conv::C,
19561962
supports_xray: false,
1963+
force_emulated_tls: false,
19571964
}
19581965
}
19591966
}
@@ -2605,6 +2612,7 @@ impl Target {
26052612
key!(entry_name);
26062613
key!(entry_abi, Conv)?;
26072614
key!(supports_xray, bool);
2615+
key!(force_emulated_tls, bool);
26082616

26092617
if base.is_builtin {
26102618
// This can cause unfortunate ICEs later down the line.
@@ -2859,6 +2867,7 @@ impl ToJson for Target {
28592867
target_option_val!(entry_name);
28602868
target_option_val!(entry_abi);
28612869
target_option_val!(supports_xray);
2870+
target_option_val!(force_emulated_tls);
28622871

28632872
if let Some(abi) = self.default_adjusted_cabi {
28642873
d.insert("default-adjusted-cabi".into(), Abi::name(abi).to_json());

library/std/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ cfg-if = { version = "1.0", features = ['rustc-dep-of-std'] }
1515
panic_unwind = { path = "../panic_unwind", optional = true }
1616
panic_abort = { path = "../panic_abort" }
1717
core = { path = "../core" }
18-
libc = { version = "0.2.139", default-features = false, features = ['rustc-dep-of-std'] }
18+
libc = { version = "0.2.140", default-features = false, features = ['rustc-dep-of-std'] }
1919
compiler_builtins = { version = "0.1.87" }
2020
profiler_builtins = { path = "../profiler_builtins", optional = true }
2121
unwind = { path = "../unwind" }

library/std/src/sys/unix/os.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,10 @@ pub fn set_errno(e: i32) {
115115
/// Gets a detailed string description for the given error number.
116116
pub fn error_string(errno: i32) -> String {
117117
extern "C" {
118-
#[cfg_attr(any(target_os = "linux", target_env = "newlib"), link_name = "__xpg_strerror_r")]
118+
#[cfg_attr(
119+
all(any(target_os = "linux", target_env = "newlib"), not(target_env = "ohos")),
120+
link_name = "__xpg_strerror_r"
121+
)]
119122
fn strerror_r(errnum: c_int, buf: *mut c_char, buflen: libc::size_t) -> c_int;
120123
}
121124

library/unwind/src/lib.rs

+16
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,22 @@ cfg_if::cfg_if! {
5454
}
5555
}
5656

57+
// This is the same as musl except that we default to using the system libunwind
58+
// instead of libgcc.
59+
#[cfg(target_env = "ohos")]
60+
cfg_if::cfg_if! {
61+
if #[cfg(all(feature = "llvm-libunwind", feature = "system-llvm-libunwind"))] {
62+
compile_error!("`llvm-libunwind` and `system-llvm-libunwind` cannot be enabled at the same time");
63+
} else if #[cfg(feature = "llvm-libunwind")] {
64+
#[link(name = "unwind", kind = "static", modifiers = "-bundle")]
65+
extern "C" {}
66+
} else {
67+
#[link(name = "unwind", kind = "static", modifiers = "-bundle", cfg(target_feature = "crt-static"))]
68+
#[link(name = "unwind", cfg(not(target_feature = "crt-static")))]
69+
extern "C" {}
70+
}
71+
}
72+
5773
#[cfg(target_os = "android")]
5874
cfg_if::cfg_if! {
5975
if #[cfg(feature = "llvm-libunwind")] {

src/bootstrap/lib.rs

+2
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,8 @@ const EXTRA_CHECK_CFGS: &[(Option<Mode>, &'static str, Option<&[&'static str]>)]
149149
// Needed to avoid the need to copy windows.lib into the sysroot.
150150
(Some(Mode::Rustc), "windows_raw_dylib", None),
151151
(Some(Mode::ToolRustc), "windows_raw_dylib", None),
152+
// #[cfg(bootstrap)] ohos
153+
(Some(Mode::Std), "target_env", Some(&["ohos"])),
152154
];
153155

154156
/// A structure representing a Rust compiler.

src/bootstrap/llvm.rs

+3
Original file line numberDiff line numberDiff line change
@@ -1008,6 +1008,9 @@ fn supported_sanitizers(
10081008
"aarch64-unknown-linux-gnu" => {
10091009
common_libs("linux", "aarch64", &["asan", "lsan", "msan", "tsan", "hwasan"])
10101010
}
1011+
"aarch64-unknown-linux-ohos" => {
1012+
common_libs("linux", "aarch64", &["asan", "lsan", "msan", "tsan", "hwasan"])
1013+
}
10111014
"x86_64-apple-darwin" => darwin_libs("osx", &["asan", "lsan", "tsan"]),
10121015
"x86_64-unknown-fuchsia" => common_libs("fuchsia", "x86_64", &["asan"]),
10131016
"x86_64-apple-ios" => darwin_libs("iossim", &["asan", "tsan"]),

src/doc/rustc/src/SUMMARY.md

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
- [armv7-unknown-linux-uclibceabi](platform-support/armv7-unknown-linux-uclibceabi.md)
2727
- [armv7-unknown-linux-uclibceabihf](platform-support/armv7-unknown-linux-uclibceabihf.md)
2828
- [\*-android and \*-androideabi](platform-support/android.md)
29+
- [\*-linux-ohos](platform-support/openharmony.md)
2930
- [\*-unknown-fuchsia](platform-support/fuchsia.md)
3031
- [\*-kmc-solid_\*](platform-support/kmc-solid.md)
3132
- [m68k-unknown-linux-gnu](platform-support/m68k-unknown-linux-gnu.md)

src/doc/rustc/src/platform-support.md

+2
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,7 @@ target | std | host | notes
218218
[`aarch64-kmc-solid_asp3`](platform-support/kmc-solid.md) | ✓ | | ARM64 SOLID with TOPPERS/ASP3
219219
[`aarch64-nintendo-switch-freestanding`](platform-support/aarch64-nintendo-switch-freestanding.md) | * | | ARM64 Nintendo Switch, Horizon
220220
[`aarch64-pc-windows-gnullvm`](platform-support/pc-windows-gnullvm.md) | ✓ | ✓ |
221+
[`aarch64-unknown-linux-ohos`](platform-support/openharmony.md) | ✓ | | ARM64 OpenHarmony |
221222
[`aarch64-unknown-nto-qnx710`](platform-support/nto-qnx.md) | ✓ | | ARM64 QNX Neutrino 7.1 RTOS |
222223
`aarch64-unknown-freebsd` | ✓ | ✓ | ARM64 FreeBSD
223224
`aarch64-unknown-hermit` | ✓ | | ARM64 HermitCore
@@ -240,6 +241,7 @@ target | std | host | notes
240241
[`armv6k-nintendo-3ds`](platform-support/armv6k-nintendo-3ds.md) | ? | | ARMv6K Nintendo 3DS, Horizon (Requires devkitARM toolchain)
241242
`armv7-apple-ios` | ✓ | | ARMv7 iOS, Cortex-a8
242243
[`armv7-sony-vita-newlibeabihf`](platform-support/armv7-sony-vita-newlibeabihf.md) | ? | | ARM Cortex-A9 Sony PlayStation Vita (requires VITASDK toolchain)
244+
[`armv7-unknown-linux-ohos`](platform-support/openharmony.md) | ✓ | | ARMv7 OpenHarmony |
243245
[`armv7-unknown-linux-uclibceabi`](platform-support/armv7-unknown-linux-uclibceabi.md) | ✓ | ✓ | ARMv7 Linux with uClibc, softfloat
244246
[`armv7-unknown-linux-uclibceabihf`](platform-support/armv7-unknown-linux-uclibceabihf.md) | ✓ | ? | ARMv7 Linux with uClibc, hardfloat
245247
`armv7-unknown-freebsd` | ✓ | ✓ | ARMv7 FreeBSD
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,128 @@
1+
# `*-linux-ohos*`
2+
3+
**Tier: 3**
4+
5+
Targets for the [OpenHarmony](https://gitee.com/openharmony/docs/) operating
6+
system.
7+
8+
## Target maintainers
9+
10+
- Amanieu d'Antras ([@Amanieu](https://github.com/Amanieu))
11+
12+
## Setup
13+
14+
The OpenHarmony SDK doesn't currently support Rust compilation directly, so
15+
some setup is required.
16+
17+
First, you must obtain the OpenHarmony SDK from [this page](https://gitee.com/openharmony/docs/tree/master/en/release-notes).
18+
Select the version of OpenHarmony you are developing for and download the "Public SDK package for the standard system".
19+
20+
Create the following shell scripts that wrap Clang from the OpenHarmony SDK:
21+
22+
`aarch64-unknown-linux-ohos-clang.sh`
23+
24+
```sh
25+
#!/bin/sh
26+
exec /path/to/ohos-sdk/linux/native/llvm/bin/clang \
27+
-target aarch64-linux-ohos \
28+
--sysroot=/path/to/ohos-sdk/linux/native/sysroot \
29+
-D__MUSL__ \
30+
"$@"
31+
```
32+
33+
`aarch64-unknown-linux-ohos-clang++.sh`
34+
35+
```sh
36+
#!/bin/sh
37+
exec /path/to/ohos-sdk/linux/native/llvm/bin/clang++ \
38+
-target aarch64-linux-ohos \
39+
--sysroot=/path/to/ohos-sdk/linux/native/sysroot \
40+
-D__MUSL__ \
41+
"$@"
42+
```
43+
44+
`armv7-unknown-linux-ohos-clang.sh`
45+
46+
```sh
47+
#!/bin/sh
48+
exec /path/to/ohos-sdk/linux/native/llvm/bin/clang \
49+
-target arm-linux-ohos \
50+
--sysroot=/path/to/ohos-sdk/linux/native/sysroot \
51+
-D__MUSL__ \
52+
-march=armv7-a \
53+
-mfloat-abi=softfp \
54+
-mtune=generic-armv7-a \
55+
-mthumb \
56+
"$@"
57+
```
58+
59+
`armv7-unknown-linux-ohos-clang++.sh`
60+
61+
```sh
62+
#!/bin/sh
63+
exec /path/to/ohos-sdk/linux/native/llvm/bin/clang++ \
64+
-target arm-linux-ohos \
65+
--sysroot=/path/to/ohos-sdk/linux/native/sysroot \
66+
-D__MUSL__ \
67+
-march=armv7-a \
68+
-mfloat-abi=softfp \
69+
-mtune=generic-armv7-a \
70+
-mthumb \
71+
"$@"
72+
```
73+
74+
Future versions of the OpenHarmony SDK will avoid the need for this process.
75+
76+
## Building the target
77+
78+
To build a rust toolchain, create a `config.toml` with the following contents:
79+
80+
```toml
81+
profile = "compiler"
82+
changelog-seen = 2
83+
84+
[build]
85+
sanitizers = true
86+
profiler = true
87+
88+
[target.aarch64-unknown-linux-ohos]
89+
cc = "/path/to/aarch64-unknown-linux-ohos-clang.sh"
90+
cxx = "/path/to/aarch64-unknown-linux-ohos-clang++.sh"
91+
ar = "/path/to/ohos-sdk/linux/native/llvm/bin/llvm-ar"
92+
ranlib = "/path/to/ohos-sdk/linux/native/llvm/bin/llvm-ranlib"
93+
linker = "/path/to/aarch64-unknown-linux-ohos-clang.sh"
94+
95+
[target.armv7-unknown-linux-ohos]
96+
cc = "/path/to/armv7-unknown-linux-ohos-clang.sh"
97+
cxx = "/path/to/armv7-unknown-linux-ohos-clang++.sh"
98+
ar = "/path/to/ohos-sdk/linux/native/llvm/bin/llvm-ar"
99+
ranlib = "/path/to/ohos-sdk/linux/native/llvm/bin/llvm-ranlib"
100+
linker = "/path/to/armv7-unknown-linux-ohos-clang.sh"
101+
```
102+
103+
## Building Rust programs
104+
105+
Rust does not yet ship pre-compiled artifacts for this target. To compile for
106+
this target, you will either need to build Rust with the target enabled (see
107+
"Building the target" above), or build your own copy of `core` by using
108+
`build-std` or similar.
109+
110+
You will need to configure the linker to use in `~/.cargo/config`:
111+
```toml
112+
[target.aarch64-unknown-linux-ohos]
113+
ar = "/path/to/ohos-sdk/linux/native/llvm/bin/llvm-ar"
114+
linker = "/path/to/aarch64-unknown-linux-ohos-clang.sh"
115+
116+
[target.armv7-unknown-linux-ohos]
117+
ar = "/path/to/ohos-sdk/linux/native/llvm/bin/llvm-ar"
118+
linker = "/path/to/armv7-unknown-linux-ohos-clang.sh"
119+
```
120+
121+
## Testing
122+
123+
Running the Rust testsuite is possible, but currently difficult due to the way
124+
the OpenHarmony emulator is set up (no networking).
125+
126+
## Cross-compilation toolchains and C code
127+
128+
You can use the shell scripts above to compile C code for the target.

0 commit comments

Comments
 (0)