about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLokathor <zefria@gmail.com>2020-07-16 17:24:36 -0600
committerLokathor <zefria@gmail.com>2020-07-16 17:24:36 -0600
commit9c4ac7395953435a5f39cfaf93c7679df068bade (patch)
tree022fd5106f8b107988a9f6f82fac2f0c30267b1e
parente190bdf710101d8fdf12195dcc73749719a57e72 (diff)
downloadrust-9c4ac7395953435a5f39cfaf93c7679df068bade.tar.gz
rust-9c4ac7395953435a5f39cfaf93c7679df068bade.zip
Docs clarifications.
-rw-r--r--src/librustc_target/spec/thumbv4t_nintendo_gba.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/librustc_target/spec/thumbv4t_nintendo_gba.rs b/src/librustc_target/spec/thumbv4t_nintendo_gba.rs
index 2b3aa33dfa3..1be6c4a9ff8 100644
--- a/src/librustc_target/spec/thumbv4t_nintendo_gba.rs
+++ b/src/librustc_target/spec/thumbv4t_nintendo_gba.rs
@@ -1,11 +1,11 @@
-//! Targets the Nintendo Game Boy Advance (GBA), a handheld game device from 2001.
+//! Targets the Nintendo Game Boy Advance (GBA),
+//! a handheld game device from 2001.
 //!
 //! Please ping @Lokathor if changes are needed.
 //!
-//! Important: This target **does not** specify a linker script or the ROM
-//! header. You'll still need to provide these yourself to construct a final
-//! binary. Generally you'd do this with something like
-//! `-Clink-arg=-Tmy_script.ld` and `-Clink-arg=my_crt.o`.
+//! The target profile assumes that you have the ARM binutils in your path (specifically the linker, `arm-none-eabi-ld`). They can be obtained for free for all major OSes from the ARM developer's website, and they may also be available in your system's package manager
+//!
+//! **Important:** This target profile **does not** specify a linker script or the ROM header. You'll still need to provide these yourself to construct a final  binary. Generally you'd do this with something like `-Clink-arg=-Tmy_script.ld` and `-Clink-arg=my_crt.o`.
 
 use crate::spec::{LinkerFlavor, LldFlavor, Target, TargetOptions, TargetResult};