Skip to content

Commit c227f0a

Browse files
committed
remove DS stuff from docs + change to use thumb_base
1 parent 7b0377c commit c227f0a

File tree

2 files changed

+5
-21
lines changed

2 files changed

+5
-21
lines changed

compiler/rustc_target/src/spec/armv5te_none_eabi.rs

+3-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Targets the ARMv5TE, with code as `a32` code by default.
22
3-
use crate::spec::{cvs, LinkerFlavor, LldFlavor, PanicStrategy, RelocModel, Target, TargetOptions};
3+
use crate::spec::{cvs, FramePointer, Target, TargetOptions};
44

55
pub fn target() -> Target {
66
Target {
@@ -20,8 +20,6 @@ pub fn target() -> Target {
2020

2121
options: TargetOptions {
2222
abi: "eabi".into(),
23-
linker_flavor: LinkerFlavor::Lld(LldFlavor::Ld),
24-
linker: Some("rust-lld".into()),
2523
// extra args passed to the external assembler (assuming `arm-none-eabi-as`):
2624
// * activate t32/a32 interworking
2725
// * use arch ARMv5TE
@@ -31,18 +29,13 @@ pub fn target() -> Target {
3129
// Also force-enable 32-bit atomics, which allows the use of atomic load/store only.
3230
// The resulting atomics are ABI incompatible with atomics backed by libatomic.
3331
features: "+soft-float,+strict-align,+atomics-32".into(),
32+
frame_pointer: FramePointer::MayOmit,
3433
main_needs_argc_argv: false,
3534
// don't have atomic compare-and-swap
3635
atomic_cas: false,
3736
has_thumb_interworking: true,
38-
relocation_model: RelocModel::Static,
39-
panic_strategy: PanicStrategy::Abort,
40-
// from thumb_base, rust-lang/rust#44993.
41-
emit_debug_gdb_scripts: false,
42-
// from thumb_base, apparently gcc/clang give enums a minimum of 8 bits on no-os targets
43-
c_enum_min_bits: 8,
4437

45-
..Default::default()
38+
..super::thumb_base::opts()
4639
},
4740
}
4841
}

src/doc/rustc/src/platform-support/armv5te-none-eabi.md

+2-11
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,10 @@
33
**Tier: 3**
44

55
Bare-metal target for any cpu in the ARMv5TE architecture family, supporting
6-
ARM/Thumb code interworking (aka `a32`/`t32`), with ARM code as the default code
6+
ARM/Thumb code interworking (aka `a32`/`t32`), with `a32` code as the default code
77
generation.
88

9-
The `thumbv5te-none-eabi` target is the same as this one, but with THUMB code as the default.
10-
11-
In particular this supports the main CPU of the Nintendo DS, but there's nothing DS
12-
specific with this target, so any ARMv5TE device should work fine.
9+
The `thumbv5te-none-eabi` target is the same as this one, but the instruction set defaults to `t32`.
1310

1411
## Target Maintainers
1512

@@ -59,12 +56,6 @@ Most of `core` should work as expected, with the following notes:
5956

6057
Rust programs are output as ELF files.
6158

62-
For running on DS hardware, you'll need to use an external tool to bundle this ELF file into an NDS binary. The `ndstool` utility included with devkitARM is one such tool that can do this for you:
63-
64-
```shell
65-
ndstool -c [out_nds] -9 [in_elf]
66-
```
67-
6859
## Testing
6960

7061
This is a cross-compiled target that you will need to emulate during testing.

0 commit comments

Comments
 (0)