From cab2e28f674901cd87d4f88f7eb5ba32d3517b35 Mon Sep 17 00:00:00 2001 From: Jonas Schievink Date: Tue, 1 Sep 2020 22:58:22 +0200 Subject: Integrate semihosting crates --- cortex-m-semihosting/check-blobs.sh | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100755 cortex-m-semihosting/check-blobs.sh (limited to 'cortex-m-semihosting/check-blobs.sh') 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 -- cgit v1.2.3