diff options
Diffstat (limited to 'cortex-m-rt')
-rw-r--r-- | cortex-m-rt/ci/script.sh | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/cortex-m-rt/ci/script.sh b/cortex-m-rt/ci/script.sh index 242a546..8443046 100644 --- a/cortex-m-rt/ci/script.sh +++ b/cortex-m-rt/ci/script.sh @@ -50,29 +50,23 @@ main() { # linking with rustc's LLD for ex in "${examples[@]}"; do cargo rustc --target $TARGET --example $ex -- \ - -C linker=rust-lld \ -C link-arg=-Tlink.x cargo rustc --target $TARGET --example $ex --release -- \ - -C linker=rust-lld \ -C link-arg=-Tlink.x done for ex in "${fail_examples[@]}"; do ! cargo rustc --target $TARGET --example $ex -- \ - -C linker=rust-lld \ -C link-arg=-Tlink.x ! cargo rustc --target $TARGET --example $ex --release -- \ - -C linker=rust-lld \ -C link-arg=-Tlink.x done cargo rustc --target $TARGET --example device --features device -- \ - -C linker=rust-lld \ -C link-arg=-Tlink.x cargo rustc --target $TARGET --example device --features device --release -- \ - -C linker=rust-lld \ -C link-arg=-Tlink.x fi |