We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a912bf9 commit 1831c76Copy full SHA for 1831c76
cortex-m-rt/ci/script.sh
@@ -70,6 +70,12 @@ main() {
70
71
case $TARGET in
72
thumbv6m-none-eabi|thumbv7m-none-eabi)
73
+ # linking with GNU LD
74
+ cargo run --target $TARGET --example qemu \
75
+ -C linker=arm-none-eabi-ld | grep "x = 42"
76
+ cargo run --target $TARGET --example qemu --release \
77
78
+ # linking with rustc's LLD
79
cargo run --target $TARGET --example qemu | grep "x = 42"
80
cargo run --target $TARGET --example qemu --release | grep "x = 42"
81
;;
0 commit comments