diff options
author | 2018-09-21 03:43:55 +0900 | |
---|---|---|
committer | 2018-09-21 03:43:55 +0900 | |
commit | 51ca4068eedcf8d7f8f89b166f1e84ee9edc91f0 (patch) | |
tree | fd086af15800f7df00ce23443c0ae28093ccf235 | |
parent | 9a504d35c4a522f76db4b86a4c5279027feab5a2 (diff) | |
download | cortex-m-51ca4068eedcf8d7f8f89b166f1e84ee9edc91f0.tar.gz cortex-m-51ca4068eedcf8d7f8f89b166f1e84ee9edc91f0.tar.zst cortex-m-51ca4068eedcf8d7f8f89b166f1e84ee9edc91f0.zip |
remove redundant option (1/2)
-rw-r--r-- | cortex-m-rt/ci/script.sh | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/cortex-m-rt/ci/script.sh b/cortex-m-rt/ci/script.sh index 432ea35..54ba430 100644 --- a/cortex-m-rt/ci/script.sh +++ b/cortex-m-rt/ci/script.sh @@ -36,51 +36,51 @@ main() { for ex in "${examples[@]}"; do cargo rustc --target $TARGET --example $ex -- \ -C linker=arm-none-eabi-ld \ - -C link-arg=-Tlink.x + #-C link-arg=-Tlink.x cargo rustc --target $TARGET --example $ex --release -- \ -C linker=arm-none-eabi-ld \ - -C link-arg=-Tlink.x + #-C link-arg=-Tlink.x done for ex in "${fail_examples[@]}"; do ! cargo rustc --target $TARGET --example $ex -- \ -C linker=arm-none-eabi-ld \ - -C link-arg=-Tlink.x + #-C link-arg=-Tlink.x ! cargo rustc --target $TARGET --example $ex --release -- \ -C linker=arm-none-eabi-ld \ - -C link-arg=-Tlink.x + #-C link-arg=-Tlink.x done cargo rustc --target $TARGET --example device --features device -- \ -C linker=arm-none-eabi-ld \ - -C link-arg=-Tlink.x + #-C link-arg=-Tlink.x cargo rustc --target $TARGET --example device --features device --release -- \ -C linker=arm-none-eabi-ld \ - -C link-arg=-Tlink.x + #-C link-arg=-Tlink.x # linking with rustc's LLD for ex in "${examples[@]}"; do cargo rustc --target $TARGET --example $ex -- \ - -C link-arg=-Tlink.x + #-C link-arg=-Tlink.x cargo rustc --target $TARGET --example $ex --release -- \ - -C link-arg=-Tlink.x + #-C link-arg=-Tlink.x done for ex in "${fail_examples[@]}"; do ! cargo rustc --target $TARGET --example $ex -- \ - -C link-arg=-Tlink.x + #-C link-arg=-Tlink.x ! cargo rustc --target $TARGET --example $ex --release -- \ - -C link-arg=-Tlink.x + #-C link-arg=-Tlink.x done cargo rustc --target $TARGET --example device --features device -- \ - -C link-arg=-Tlink.x + #-C link-arg=-Tlink.x cargo rustc --target $TARGET --example device --features device --release -- \ - -C link-arg=-Tlink.x + #-C link-arg=-Tlink.x fi case $TARGET in |