From 7cc9ca876f4086f69e6afff4e064c7734dc07140 Mon Sep 17 00:00:00 2001 From: Hanno Becker Date: Fri, 7 Jun 2019 10:39:34 +0100 Subject: [PATCH] baremetal.sh: Print code-size summary This commit modifies `scripts/baremetal.sh` to print the total code-size of the SSL, X.509 and Crypto libraries are runs of - ./scripts/baremetal.sh --rom --gcc - ./scripts/baremetal.sh --rom --armc5 - ./scripts/baremetal.sh --rom --armc6 This eases quick investigation of the effect of changes on code-size. --- scripts/baremetal.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/scripts/baremetal.sh b/scripts/baremetal.sh index 86fac5687..4b798b9df 100755 --- a/scripts/baremetal.sh +++ b/scripts/baremetal.sh @@ -94,6 +94,11 @@ baremetal_build_gcc() echo "ROM statistics written to:" echo "* $ROM_OUT_FILE" echo "* $ROM_OUT_SYMS" + + # Print summary + cat $ROM_OUT_FILE | grep "libmbedtls.a" | awk '{printf( "%15s: %s Bytes\n", $4, $5)}' + cat $ROM_OUT_FILE | grep "libmbedcrypto.a" | awk '{printf( "%15s: %s Bytes\n", $4, $5)}' + cat $ROM_OUT_FILE | grep "libmbedx509.a" | awk '{printf( "%15s: %s Bytes\n", $4, $5)}' } baremetal_build_armc5() @@ -122,6 +127,11 @@ baremetal_build_armc5() echo "ROM statistics written to:" echo "* $ROM_OUT_FILE" echo "* $ROM_OUT_SYMS" + + # Print summary + cat $ROM_OUT_FILE | grep "libmbedtls.a" | awk '{printf( "%15s: %s Bytes\n", $4, $5)}' + cat $ROM_OUT_FILE | grep "libmbedcrypto.a" | awk '{printf( "%15s: %s Bytes\n", $4, $5)}' + cat $ROM_OUT_FILE | grep "libmbedx509.a" | awk '{printf( "%15s: %s Bytes\n", $4, $5)}' } baremetal_build_armc6() @@ -150,6 +160,11 @@ baremetal_build_armc6() echo "ROM statistics written to:" echo "* $ROM_OUT_FILE" echo "* $ROM_OUT_SYMS" + + # Print summary + cat $ROM_OUT_FILE | grep "libmbedtls.a" | awk '{printf( "%15s: %s Bytes\n", $4, $5)}' + cat $ROM_OUT_FILE | grep "libmbedcrypto.a" | awk '{printf( "%15s: %s Bytes\n", $4, $5)}' + cat $ROM_OUT_FILE | grep "libmbedx509.a" | awk '{printf( "%15s: %s Bytes\n", $4, $5)}' } # 32-bit host-build of library, tests and example programs,