Enhance the output_env.sh script

This commit adds additional information to the output_env.sh script of:
  * Linux distribution version (if available)
  * GDB version (if available)

It also makes some information clearer:
  * the type of OpenSSL/GNUTLS version (legacy/default)
  * and whether certain versions are not installed, or not configured

And it simplifies the error messages for absent tools.

Signed-off-by: Simon Butcher <simon.butcher@arm.com>
This commit is contained in:
Simon Butcher 2020-02-26 15:29:40 +00:00
parent aaf9c10f26
commit 870ee827ac

View File

@ -23,11 +23,15 @@ print_version()
shift shift
ARGS="$1" ARGS="$1"
shift shift
FAIL_MSG="$1" VARIANT=$1
shift shift
if [ ! -z $VARIANT ]; then
VARIANT=" ($VARIANT)"
fi
if ! `type "$BIN" > /dev/null 2>&1`; then if ! `type "$BIN" > /dev/null 2>&1`; then
echo "* $FAIL_MSG" echo " * ${BIN##*/}$VARIANT: Not found."
return 0 return 0
fi fi
@ -41,76 +45,93 @@ print_version()
VERSION_STR=`echo "$VERSION_STR" | $FILTER` VERSION_STR=`echo "$VERSION_STR" | $FILTER`
done done
echo "* ${BIN##*/}: $BIN: $VERSION_STR" echo " * ${BIN##*/}$VARIANT: ${BIN} : ${VERSION_STR} "
} }
print_version "uname" "-a" "" echo "Platform:\n"
if `type "lsb_release" > /dev/null 2>&1`; then
echo "Linux variant"
lsb_release -d -c
else
echo "Unknown Unix variant"
fi
echo echo
print_version "uname" "-a" ""
echo "\n"
echo "Tool Versions:\n"
if [ "${RUN_ARMCC:-1}" -ne 0 ]; then if [ "${RUN_ARMCC:-1}" -ne 0 ]; then
: "${ARMC5_CC:=armcc}" : "${ARMC5_CC:=armcc}"
print_version "$ARMC5_CC" "--vsn" "armcc not found!" "head -n 2" print_version "$ARMC5_CC" "--vsn" "" "head -n 2"
echo echo
: "${ARMC6_CC:=armclang}" : "${ARMC6_CC:=armclang}"
print_version "$ARMC6_CC" "--vsn" "armclang not found!" "head -n 2" print_version "$ARMC6_CC" "--vsn" "" "head -n 2"
echo echo
fi fi
print_version "arm-none-eabi-gcc" "--version" "gcc-arm not found!" "head -n 1" print_version "arm-none-eabi-gcc" "--version" "" "head -n 1"
echo echo
print_version "gcc" "--version" "gcc not found!" "head -n 1" print_version "gcc" "--version" "" "head -n 1"
echo echo
print_version "clang" "--version" "clang not found" "head -n 2" print_version "clang" "--version" "" "head -n 2"
echo echo
print_version "ldd" "--version" \ print_version "ldd" "--version" "" "head -n 1"
"No ldd present: can't determine libc version!" \
"head -n 1"
echo echo
print_version "valgrind" "--version" "valgrind not found!" print_version "valgrind" "--version" ""
echo
print_version "gdb" "--version" "" "head -n 1"
echo echo
: ${OPENSSL:=openssl} : ${OPENSSL:=openssl}
print_version "$OPENSSL" "version" "openssl not found!" print_version "$OPENSSL" "version" "default"
echo echo
if [ -n "${OPENSSL_LEGACY+set}" ]; then if [ -n "${OPENSSL_LEGACY+set}" ]; then
print_version "$OPENSSL_LEGACY" "version" "openssl legacy version not found!" print_version "$OPENSSL_LEGACY" "version" "legacy"
echo else
echo " * openssl (legacy): Not configured."
fi fi
echo
: ${GNUTLS_CLI:=gnutls-cli} : ${GNUTLS_CLI:=gnutls-cli}
print_version "$GNUTLS_CLI" "--version" "gnuTLS client not found!" "head -n 1" print_version "$GNUTLS_CLI" "--version" "default" "head -n 1"
echo echo
: ${GNUTLS_SERV:=gnutls-serv} : ${GNUTLS_SERV:=gnutls-serv}
print_version "$GNUTLS_SERV" "--version" "gnuTLS server not found!" "head -n 1" print_version "$GNUTLS_SERV" "--version" "default" "head -n 1"
echo echo
if [ -n "${GNUTLS_LEGACY_CLI+set}" ]; then if [ -n "${GNUTLS_LEGACY_CLI+set}" ]; then
print_version "$GNUTLS_LEGACY_CLI" "--version" \ print_version "$GNUTLS_LEGACY_CLI" "--version" "legacy" "head -n 1"
"gnuTLS client legacy version not found!" \ else
"head -n 1" echo " * gnutls-cli (legacy): Not configured."
echo
fi fi
echo
if [ -n "${GNUTLS_LEGACY_SERV+set}" ]; then if [ -n "${GNUTLS_LEGACY_SERV+set}" ]; then
print_version "$GNUTLS_LEGACY_SERV" "--version" \ print_version "$GNUTLS_LEGACY_SERV" "--version" "legacy" "head -n 1"
"gnuTLS server legacy version not found!" \ else
"head -n 1" echo " * gnutls-serv (legacy): Not configured."
echo
fi fi
echo
if `hash dpkg > /dev/null 2>&1`; then echo " * Installed asan versions:"
echo "* asan:" if `hash dpkg > /dev/null 2>&1` && `dpkg --get-selections|grep libasan > /dev/null` ; then
dpkg -s libasan5 2> /dev/null | grep -i version
dpkg -s libasan4 2> /dev/null | grep -i version
dpkg -s libasan3 2> /dev/null | grep -i version
dpkg -s libasan2 2> /dev/null | grep -i version dpkg -s libasan2 2> /dev/null | grep -i version
dpkg -s libasan1 2> /dev/null | grep -i version dpkg -s libasan1 2> /dev/null | grep -i version
dpkg -s libasan0 2> /dev/null | grep -i version dpkg -s libasan0 2> /dev/null | grep -i version
else else
echo "* No dpkg present: can't determine asan version!" echo " Either dpkg not present or no asan versions installed."
fi fi
echo echo