aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jorge Aparicio <jorge@japaric.io> 2018-08-31 22:03:38 +0200
committerGravatar Jorge Aparicio <jorge@japaric.io> 2018-08-31 22:03:38 +0200
commit8773ca1f5a03654de29e6716f1dfe6cc704bdec2 (patch)
tree452b4e8ff6a030df0c582ac8e19807260593c290
parentf68e65af8fa0bf915209ae7b3d75303c317ea109 (diff)
downloadcortex-m-8773ca1f5a03654de29e6716f1dfe6cc704bdec2.tar.gz
cortex-m-8773ca1f5a03654de29e6716f1dfe6cc704bdec2.tar.zst
cortex-m-8773ca1f5a03654de29e6716f1dfe6cc704bdec2.zip
remove the now redundant `-C linker=rust-lld` argument
-rw-r--r--cortex-m-rt/ci/script.sh6
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