Skip to content

Commit 66b3ca0

Browse files
committed
Promote x86_64-unknown-none to Tier 2
1 parent 0331491 commit 66b3ca0

File tree

4 files changed

+14
-8
lines changed

4 files changed

+14
-8
lines changed

src/ci/docker/host-x86_64/dist-various-2/Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ ENV TARGETS=$TARGETS,nvptx64-nvidia-cuda
111111
ENV TARGETS=$TARGETS,armv7-unknown-linux-gnueabi
112112
ENV TARGETS=$TARGETS,armv7-unknown-linux-musleabi
113113
ENV TARGETS=$TARGETS,i686-unknown-freebsd
114+
ENV TARGETS=$TARGETS,x86_64-unknown-none
114115

115116
# As per https://bugs.launchpad.net/ubuntu/+source/gcc-defaults/+bug/1300211
116117
# we need asm in the search path for gcc-8 (for gnux32) but not in the search path of the

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,7 @@ target | std | notes
177177
`x86_64-linux-android` | ✓ | 64-bit x86 Android
178178
`x86_64-pc-solaris` | ✓ | 64-bit Solaris 10/11, illumos
179179
`x86_64-unknown-linux-gnux32` | ✓ | 64-bit Linux (x32 ABI) (kernel 4.15, glibc 2.27)
180+
[`x86_64-unknown-none`](platform-support/x86_64-unknown-none.md) | * | Freestanding/bare-metal x86_64, softfloat
180181
`x86_64-unknown-redox` | ✓ | Redox OS
181182

182183
[Fortanix ABI]: https://edp.fortanix.com/
@@ -291,7 +292,6 @@ target | std | host | notes
291292
`x86_64-unknown-haiku` | ✓ | ✓ | 64-bit Haiku
292293
`x86_64-unknown-hermit` | ✓ | | HermitCore
293294
`x86_64-unknown-l4re-uclibc` | ? | |
294-
[`x86_64-unknown-none`](platform-support/x86_64-unknown-none.md) | * | | Freestanding/bare-metal x86_64, softfloat
295295
`x86_64-unknown-none-linuxkernel` | * | | Linux kernel modules
296296
[`x86_64-unknown-openbsd`](platform-support/openbsd.md) | ✓ | ✓ | 64-bit OpenBSD
297297
`x86_64-unknown-uefi` | * | | 64-bit UEFI

src/doc/rustc/src/platform-support/x86_64-unknown-none.md

+11-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# `x86_64-unknown-none`
22

3-
**Tier: 3**
3+
**Tier: 2**
44

55
Freestanding/bare-metal x86-64 binaries in ELF format: firmware, kernels, etc.
66

@@ -32,7 +32,7 @@ You can change this using the `-C code-model=` option to rustc.
3232
On `x86_64-unknown-none`, `extern "C"` uses the [standard System V calling
3333
convention](https://gitlab.com/x86-psABIs/x86-64-ABI), without red zones.
3434

35-
This target generated binaries in the ELF format. Any alternate formats or
35+
This target generates binaries in the ELF format. Any alternate formats or
3636
special considerations for binary layout will require linker options or linker
3737
scripts.
3838

@@ -49,15 +49,19 @@ target = ["x86_64-unknown-none"]
4949

5050
## Building Rust programs
5151

52-
Rust does not yet ship pre-compiled artifacts for this target. To compile for
53-
this target, you will either need to build Rust with the target enabled (see
54-
"Building the target" above), or build your own copy of `core` by using
55-
`build-std` or similar.
52+
Starting with Rust 1.62, precompiled artifacts are provided via `rustup`:
53+
54+
```text
55+
# install cross-compile toolchain
56+
rustup target add x86_64-unknown-none
57+
# target flag may be used with any cargo or rustc command
58+
cargo build --target x86_64-unknown-none
59+
```
5660

5761
## Testing
5862

5963
As `x86_64-unknown-none` supports a variety of different environments and does
60-
not support `std`, this target does not support running the Rust testsuite.
64+
not support `std`, this target does not support running the Rust test suite.
6165

6266
## Cross-compilation toolchains and C code
6367

src/tools/build-manifest/src/main.rs

+1
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,7 @@ static TARGETS: &[&str] = &[
152152
"x86_64-unknown-linux-gnux32",
153153
"x86_64-unknown-linux-musl",
154154
"x86_64-unknown-netbsd",
155+
"x86_64-unknown-none",
155156
"x86_64-unknown-redox",
156157
"x86_64-unknown-hermit",
157158
];

0 commit comments

Comments
 (0)