aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Hugo van der Wijst <hvanderwijst@tesla.com> 2019-01-16 17:57:54 -0800
committerGravatar Jorge Aparicio <jorge@japaric.io> 2019-02-16 00:23:01 +0100
commit82c533cbf43c56da0960de7b48e7a6d1cc8defd0 (patch)
tree9fc3403d3f93e235d5276c609f54bfc56fb2990a
parentbe8a5e89b8c5763dc691bb748ba1da73a56cb2cc (diff)
downloadrtic-82c533cbf43c56da0960de7b48e7a6d1cc8defd0.tar.gz
rtic-82c533cbf43c56da0960de7b48e7a6d1cc8defd0.tar.zst
rtic-82c533cbf43c56da0960de7b48e7a6d1cc8defd0.zip
Fix thumbv6 build.
-rw-r--r--ci/script.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/ci/script.sh b/ci/script.sh
index 40b03a7e..1bb0ae2e 100644
--- a/ci/script.sh
+++ b/ci/script.sh
@@ -125,6 +125,11 @@ main() {
cargo clean
for ex in ${exs[@]}; do
+ if [ $ex = ramfunc ] && [ $T = thumbv6m-none-eabi ]; then
+ # LLD doesn't support this at the moment
+ continue
+ fi
+
if [ $ex = singleton ]; then
# singleton build is currently not reproducible due to
# https://github.com/japaric/owned-singleton/issues/2