zynq7000-rs/.cargo/config.toml

17 lines
354 B
TOML
Raw Normal View History

2025-02-19 11:00:04 +01:00
[target.armv7a-none-eabihf]
rustflags = [
"-Ctarget-cpu=cortex-a9",
"-Ctarget-feature=+vfp3",
2025-02-20 22:55:58 +01:00
"-Ctarget-feature=+neon",
2025-02-19 11:00:04 +01:00
"-Clink-arg=-Tlink.x",
2025-02-23 12:25:36 +01:00
# Can be useful for debugging.
# "-Clink-args=-Map=app.map"
2025-02-19 11:00:04 +01:00
]
# Tier 3 target, so no pre-compiled artifacts included.
[unstable]
build-std = ["core", "alloc"]
2025-02-20 22:55:58 +01:00
[build]
target = "armv7a-none-eabihf"