src/doc/rustc/src/platform-support/armv7-unknown-linux-gnueabi.md
armv7-unknown-linux-gnueabi and armv7-unknown-linux-gnueabihfarmv7-unknown-linux-gnueabihfarmv7-unknown-linux-gnueabiTarget for 32-bit little endian ARMv7-A Linux 3.2+ programs using glibc 2.17+.
@rustbot ping arm-maintainers to ping usBuilding the targets themselves requires a 32-bit little endian ARMv7-A compiler that is supported
by cc-rs.
These targets can be built by enabling it for a rustc build:
[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:
[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"
These targets is distributed through rustup, and otherwise requires no special configuration.
These targets can be cross-compiled from any host.
These targets can be tested as normal with x.py on a 32-bit little endian ARMv7-A host or via
QEMU emulation.