-
Notifications
You must be signed in to change notification settings - Fork 13.9k
add arm-maintainers to various targets #147268
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
bors
merged 1 commit into
rust-lang:master
from
davidtwco:add-arm-maintainers-to-targets
Oct 3, 2025
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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
50 changes: 50 additions & 0 deletions
50
src/doc/rustc/src/platform-support/aarch64-unknown-linux-gnu.md
This file contains hidden or 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,50 @@ | ||
# `aarch64-unknown-linux-gnu` | ||
|
||
**Tier: 1 (with Host Tools)** | ||
|
||
Target for 64-bit little endian ARMv8-A Linux 4.1+ programs using glibc 2.17+. | ||
|
||
## Target maintainers | ||
|
||
- [@rust-lang/arm-maintainers][arm_maintainers] ([[email protected]][arm_email]) | ||
|
||
[arm_maintainers]: https://github.com/rust-lang/team/blob/master/teams/arm-maintainers.toml | ||
[arm_email]: mailto:[email protected] | ||
|
||
## Requirements | ||
|
||
Building the target itself requires a 64-bit little endian ARMv8-A compiler that is supported by | ||
`cc-rs`. | ||
|
||
## Building the target | ||
|
||
The target can be built by enabling it for a `rustc` build: | ||
|
||
```toml | ||
[build] | ||
target = ["aarch64-unknown-linux-gnu"] | ||
``` | ||
|
||
If cross-compiling, make sure your C compiler is included in `$PATH`, then add it to the | ||
`bootstrap.toml`: | ||
|
||
```toml | ||
[target.aarch64-unknown-linux-musl] | ||
cc = "aarch64-linux-gnu-gcc" | ||
cxx = "aarch64-linux-gnu-g++" | ||
ar = "aarch64-linux-gnu-ar" | ||
linker = "aarch64-linux-gnu-gcc" | ||
``` | ||
|
||
## Building Rust programs | ||
|
||
This target is distributed through `rustup`, and otherwise requires no special configuration. | ||
|
||
## Cross-compilation | ||
|
||
This target can be cross-compiled from any host. | ||
|
||
## Testing | ||
|
||
This target can be tested as normal with `x.py` on a 64-bit little endian ARMv8-A host or via QEMU | ||
emulation. |
This file contains hidden or 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 |
---|---|---|
|
@@ -14,9 +14,12 @@ Processors in this family include the [Arm Cortex-A35, 53, 76, etc][aarch64-cpus | |
|
||
## Target maintainers | ||
|
||
[Rust Embedded Devices Working Group Arm Team] | ||
- [Rust Embedded Devices Working Group Arm Team] | ||
- [@rust-lang/arm-maintainers][arm_maintainers] ([[email protected]][arm_email]) | ||
|
||
[Rust Embedded Devices Working Group Arm Team]: https://github.com/rust-embedded/wg?tab=readme-ov-file#the-arm-team | ||
[arm_maintainers]: https://github.com/rust-lang/team/blob/master/teams/arm-maintainers.toml | ||
[arm_email]: mailto:[email protected] | ||
|
||
## Target CPU and Target Feature options | ||
|
||
|
This file contains hidden or 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
51 changes: 51 additions & 0 deletions
51
src/doc/rustc/src/platform-support/armv7-unknown-linux-gnueabi.md
This file contains hidden or 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,51 @@ | ||
# `armv7-unknown-linux-gnueabi` and `armv7-unknown-linux-gnueabihf` | ||
|
||
* **Tier: 2 (with Host Tools)** for `armv7-unknown-linux-gnueabihf` | ||
* **Tier: 2** for `armv7-unknown-linux-gnueabi` | ||
|
||
Target for 32-bit little endian ARMv7-A Linux 3.2+ programs using glibc 2.17+. | ||
|
||
## Target maintainers | ||
|
||
- [@rust-lang/arm-maintainers][arm_maintainers] ([[email protected]][arm_email]) | ||
|
||
[arm_maintainers]: https://github.com/rust-lang/team/blob/master/teams/arm-maintainers.toml | ||
[arm_email]: mailto:[email protected] | ||
|
||
## Requirements | ||
|
||
Building the targets themselves requires a 32-bit little endian ARMv7-A compiler that is supported | ||
by `cc-rs`. | ||
|
||
## Building the target | ||
|
||
These targets can be built by enabling it for a `rustc` build: | ||
|
||
```toml | ||
[build] | ||
target = ["armv7-unknown-linux-gnueabihf", "armv7-unknown-linux-gnueabi"] | ||
``` | ||
|
||
If cross-compiling, make sure your C compiler is included in `$PATH`, then add it to the | ||
`bootstrap.toml`: | ||
|
||
```toml | ||
[target.aarch64-unknown-linux-musl] | ||
cc = "arm-linux-gnu-gcc" | ||
cxx = "arm-linux-gnu-g++" | ||
ar = "arm-linux-gnu-ar" | ||
linker = "arm-linux-gnu-gcc" | ||
``` | ||
|
||
## Building Rust programs | ||
|
||
These targets is distributed through `rustup`, and otherwise requires no special configuration. | ||
|
||
## Cross-compilation | ||
|
||
These targets can be cross-compiled from any host. | ||
|
||
## Testing | ||
|
||
These targets can be tested as normal with `x.py` on a 32-bit little endian ARMv7-A host or via | ||
QEMU emulation. |
This file contains hidden or 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 |
---|---|---|
|
@@ -19,9 +19,12 @@ See [`arm-none-eabi`](arm-none-eabi.md) for information applicable to all | |
|
||
## Target maintainers | ||
|
||
[Rust Embedded Devices Working Group Arm Team] | ||
- [Rust Embedded Devices Working Group Arm Team] | ||
- [@rust-lang/arm-maintainers][arm_maintainers] ([[email protected]][arm_email]) | ||
|
||
[Rust Embedded Devices Working Group Arm Team]: https://github.com/rust-embedded/wg?tab=readme-ov-file#the-arm-team | ||
[arm_maintainers]: https://github.com/rust-lang/team/blob/master/teams/arm-maintainers.toml | ||
[arm_email]: mailto:[email protected] | ||
|
||
## Requirements | ||
|
||
|
This file contains hidden or 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 |
---|---|---|
|
@@ -15,10 +15,13 @@ See [`arm-none-eabi`](arm-none-eabi.md) for information applicable to all | |
|
||
## Target maintainers | ||
|
||
[@chrisnc](https://github.com/chrisnc) | ||
[Rust Embedded Devices Working Group Arm Team] | ||
- [@chrisnc](https://github.com/chrisnc) | ||
- [Rust Embedded Devices Working Group Arm Team] | ||
- [@rust-lang/arm-maintainers][arm_maintainers] ([[email protected]][arm_email]) | ||
|
||
[Rust Embedded Devices Working Group Arm Team]: https://github.com/rust-embedded/wg?tab=readme-ov-file#the-arm-team | ||
[arm_maintainers]: https://github.com/rust-lang/team/blob/master/teams/arm-maintainers.toml | ||
[arm_email]: mailto:[email protected] | ||
|
||
## Requirements | ||
|
||
|
This file contains hidden or 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 |
---|---|---|
|
@@ -17,10 +17,13 @@ See [`arm-none-eabi`](arm-none-eabi.md) for information applicable to all | |
|
||
## Target maintainers | ||
|
||
[@chrisnc](https://github.com/chrisnc) | ||
[Rust Embedded Devices Working Group Arm Team] | ||
- [@chrisnc](https://github.com/chrisnc) | ||
- [Rust Embedded Devices Working Group Arm Team] | ||
- [@rust-lang/arm-maintainers][arm_maintainers] ([[email protected]][arm_email]) | ||
|
||
[Rust Embedded Devices Working Group Arm Team]: https://github.com/rust-embedded/wg?tab=readme-ov-file#the-arm-team | ||
[arm_maintainers]: https://github.com/rust-lang/team/blob/master/teams/arm-maintainers.toml | ||
[arm_email]: mailto:[email protected] | ||
|
||
## Requirements | ||
|
||
|
This file contains hidden or 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 |
---|---|---|
|
@@ -22,7 +22,11 @@ See [`arm-none-eabi`](arm-none-eabi.md) for information applicable to all | |
|
||
## Target maintainers | ||
|
||
[Rust Embedded Devices Working Group Arm Team](https://github.com/rust-embedded/wg?tab=readme-ov-file#the-arm-team) | ||
- [Rust Embedded Devices Working Group Arm Team](https://github.com/rust-embedded/wg?tab=readme-ov-file#the-arm-team) | ||
- [@rust-lang/arm-maintainers][arm_maintainers] ([[email protected]][arm_email]) | ||
|
||
[arm_maintainers]: https://github.com/rust-lang/team/blob/master/teams/arm-maintainers.toml | ||
[arm_email]: mailto:[email protected] | ||
|
||
## Target CPU and Target Feature options | ||
|
||
|
This file contains hidden or 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 |
---|---|---|
|
@@ -23,7 +23,11 @@ only option because there is no FPU support in [Armv7-M]. | |
|
||
## Target maintainers | ||
|
||
[Rust Embedded Devices Working Group Arm Team](https://github.com/rust-embedded/wg?tab=readme-ov-file#the-arm-team) | ||
- [Rust Embedded Devices Working Group Arm Team](https://github.com/rust-embedded/wg?tab=readme-ov-file#the-arm-team) | ||
- [@rust-lang/arm-maintainers][arm_maintainers] ([[email protected]][arm_email]) | ||
|
||
[arm_maintainers]: https://github.com/rust-lang/team/blob/master/teams/arm-maintainers.toml | ||
[arm_email]: mailto:[email protected] | ||
|
||
## Target CPU and Target Feature options | ||
|
||
|
This file contains hidden or 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 |
---|---|---|
|
@@ -23,7 +23,11 @@ only option because there is no FPU support in [Armv8-M] Baseline. | |
|
||
## Target maintainers | ||
|
||
[Rust Embedded Devices Working Group Arm Team](https://github.com/rust-embedded/wg?tab=readme-ov-file#the-arm-team) | ||
- [Rust Embedded Devices Working Group Arm Team](https://github.com/rust-embedded/wg?tab=readme-ov-file#the-arm-team) | ||
- [@rust-lang/arm-maintainers][arm_maintainers] ([[email protected]][arm_email]) | ||
|
||
[arm_maintainers]: https://github.com/rust-lang/team/blob/master/teams/arm-maintainers.toml | ||
[arm_email]: mailto:[email protected] | ||
|
||
## Target CPU and Target Feature options | ||
|
||
|
This file contains hidden or 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 |
---|---|---|
|
@@ -26,7 +26,11 @@ See [`arm-none-eabi`](arm-none-eabi.md) for information applicable to all | |
|
||
## Target maintainers | ||
|
||
[Rust Embedded Devices Working Group Arm Team](https://github.com/rust-embedded/wg?tab=readme-ov-file#the-arm-team) | ||
- [Rust Embedded Devices Working Group Arm Team](https://github.com/rust-embedded/wg?tab=readme-ov-file#the-arm-team) | ||
- [@rust-lang/arm-maintainers][arm_maintainers] ([[email protected]][arm_email]) | ||
|
||
[arm_maintainers]: https://github.com/rust-lang/team/blob/master/teams/arm-maintainers.toml | ||
[arm_email]: mailto:[email protected] | ||
|
||
## Target CPU and Target Feature options | ||
|
||
|
This file contains hidden or 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 |
---|---|---|
|
@@ -13,8 +13,12 @@ Available targets: | |
|
||
## Target maintainers | ||
|
||
[@dvdhrm](https://github.com/dvdhrm) | ||
[@nicholasbishop](https://github.com/nicholasbishop) | ||
- [@dvdhrm](https://github.com/dvdhrm) | ||
- [@nicholasbishop](https://github.com/nicholasbishop) | ||
- (for `aarch64-unknown-uefi` only) [@rust-lang/arm-maintainers][arm_maintainers] ([[email protected]][arm_email]) | ||
|
||
[arm_maintainers]: https://github.com/rust-lang/team/blob/master/teams/arm-maintainers.toml | ||
[arm_email]: mailto:[email protected] | ||
|
||
## Requirements | ||
|
||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.