agb/tracker/agb-tracker/.cargo/config.toml

23 lines
451 B
TOML
Raw Normal View History

2023-07-12 21:10:05 +10:00
[unstable]
build-std = ["core", "alloc"]
build-std-features = ["compiler-builtins-mem"]
[build]
target = "thumbv4t-none-eabi"
[target.thumbv4t-none-eabi]
rustflags = [
"-Clink-arg=-Tgba.ld",
"-Ctarget-cpu=arm7tdmi",
"-Cforce-frame-pointers=yes",
]
2023-07-12 21:10:05 +10:00
runner = "mgba-test-runner"
[target.armv4t-none-eabi]
rustflags = [
"-Clink-arg=-Tgba.ld",
"-Ctarget-cpu=arm7tdmi",
"-Cforce-frame-pointers=yes",
]
2023-07-12 21:10:05 +10:00
runner = "mgba-test-runner"