Skip to content

Commit d5004bf

Browse files
committed
[ci] run qemu for both GNU LD and rustc's LLD. (fix)
1 parent 1831c76 commit d5004bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cortex-m-rt/ci/script.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ main() {
7171
case $TARGET in
7272
thumbv6m-none-eabi|thumbv7m-none-eabi)
7373
# linking with GNU LD
74-
cargo run --target $TARGET --example qemu \
74+
cargo run --target $TARGET --example qemu -- \
7575
-C linker=arm-none-eabi-ld | grep "x = 42"
76-
cargo run --target $TARGET --example qemu --release \
76+
cargo run --target $TARGET --example qemu --release -- \
7777
-C linker=arm-none-eabi-ld | grep "x = 42"
7878
# linking with rustc's LLD
7979
cargo run --target $TARGET --example qemu | grep "x = 42"

0 commit comments

Comments
 (0)