Skip to content

Commit c5a0125

Browse files
Don't try and use audio.
Pollutes the QEMU output in CI because there's no audio device available.
1 parent 4ad7421 commit c5a0125

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.cargo/config.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
[target.armv8r-none-eabihf]
22
# Note, this requires QEMU 9 or higher
3-
runner = "qemu-system-arm -machine mps3-an536 -cpu cortex-r52 -semihosting -nographic -kernel"
3+
runner = "qemu-system-arm -machine mps3-an536 -cpu cortex-r52 -semihosting -nographic -audio none -kernel"
44

55
[target.armv7r-none-eabihf]
6-
runner = "qemu-system-arm -machine versatileab -cpu cortex-r5f -semihosting -nographic -kernel"
6+
runner = "qemu-system-arm -machine versatileab -cpu cortex-r5f -semihosting -nographic -audio none -kernel"
77

88
[target.armv7r-none-eabi]
99
# change '-mcpu=cortex-r5' to '-mcpu=cortex-r5f' if you use eabi-fpu feature, otherwise
1010
# qemu-system-arm will lock up
11-
runner = "qemu-system-arm -machine versatileab -cpu cortex-r5 -semihosting -nographic -kernel"
11+
runner = "qemu-system-arm -machine versatileab -cpu cortex-r5 -semihosting -nographic -audio none -kernel"
1212

1313
[target.armv7a-none-eabihf]
14-
runner = "qemu-system-arm -machine versatileab -cpu cortex-a8 -semihosting -nographic -kernel"
14+
runner = "qemu-system-arm -machine versatileab -cpu cortex-a8 -semihosting -nographic -audio none -kernel"
1515

1616
[target.armv7a-none-eabi]
17-
runner = "qemu-system-arm -machine versatileab -cpu cortex-a8 -semihosting -nographic -kernel"
17+
runner = "qemu-system-arm -machine versatileab -cpu cortex-a8 -semihosting -nographic -audio none -kernel"
1818

1919
[unstable]
2020
build-std = ["core", "alloc"]

0 commit comments

Comments
 (0)