diff options
| author | Jorge Aparicio <jorge.aparicio@ferrous-systems.com> | 2020-01-15 16:39:08 +0100 |
|---|---|---|
| committer | Jorge Aparicio <jorge.aparicio@ferrous-systems.com> | 2020-01-15 18:05:06 +0100 |
| commit | 470cdf54ac9acee20ab8da46ef7899bae9f58f29 (patch) | |
| tree | 818985a018ed5b90de6382d1f28e3aeb982b03ee /src/tools | |
| parent | c74353c7d2e61b111a9241490b9fbbd1ebe491fe (diff) | |
| download | rust-470cdf54ac9acee20ab8da46ef7899bae9f58f29.tar.gz rust-470cdf54ac9acee20ab8da46ef7899bae9f58f29.zip | |
add bare metal ARM Cortex-A targets to rustc
-> `rustc --target armv7-none-eabi` will work also build rust-std (rustup) components for them -> `rustup target add armv7-none-eabi` will work
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/build-manifest/src/main.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tools/build-manifest/src/main.rs b/src/tools/build-manifest/src/main.rs index 481163a1a9a..8281d20e4c8 100644 --- a/src/tools/build-manifest/src/main.rs +++ b/src/tools/build-manifest/src/main.rs @@ -69,6 +69,8 @@ static TARGETS: &[&str] = &[ "thumbv7neon-linux-androideabi", "armv7-unknown-linux-gnueabi", "armv7-unknown-linux-gnueabihf", + "armv7a-none-eabi", + "armv7a-none-eabihf", "thumbv7neon-unknown-linux-gnueabihf", "armv7-unknown-linux-musleabi", "armv7-unknown-linux-musleabihf", |
