diff options
author | 2020-09-01 22:58:22 +0200 | |
---|---|---|
committer | 2020-10-13 21:31:37 +0200 | |
commit | cab2e28f674901cd87d4f88f7eb5ba32d3517b35 (patch) | |
tree | cacc3652c5fda7f5830319abfe88b063e33f5fa3 /cortex-m-semihosting/check-blobs.sh | |
parent | 9bc9be611b262edf5c7811235e16bdbcbb3509cf (diff) | |
download | cortex-m-cab2e28f674901cd87d4f88f7eb5ba32d3517b35.tar.gz cortex-m-cab2e28f674901cd87d4f88f7eb5ba32d3517b35.tar.zst cortex-m-cab2e28f674901cd87d4f88f7eb5ba32d3517b35.zip |
Integrate semihosting crates
Diffstat (limited to 'cortex-m-semihosting/check-blobs.sh')
-rwxr-xr-x | cortex-m-semihosting/check-blobs.sh | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/cortex-m-semihosting/check-blobs.sh b/cortex-m-semihosting/check-blobs.sh deleted file mode 100755 index 94fde42..0000000 --- a/cortex-m-semihosting/check-blobs.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/bash - -# Checks that the blobs are up to date with the committed assembly files - -set -euxo pipefail - -for lib in $(ls bin/*.a); do - filename=$(basename $lib) - arm-none-eabi-objdump -Cd $lib > bin/${filename%.a}.before -done - -./assemble.sh - -for lib in $(ls bin/*.a); do - filename=$(basename $lib) - arm-none-eabi-objdump -Cd $lib > bin/${filename%.a}.after -done - -for cksum in $(ls bin/*.after); do - diff -u $cksum ${cksum%.after}.before -done |