Luna/tools/test-binutils.sh

16 lines
287 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2022-09-05 14:13:51 +00:00
set -e
source $(dirname $0)/setup-env.sh
2023-01-11 18:14:35 +00:00
if [ -x "$(command -v $ARCH-luna-ar)" ]
2022-09-05 14:13:51 +00:00
then
2023-01-11 18:14:35 +00:00
if [ "$($ARCH-luna-ar --version | head -n 1 | awk '{ print $5 }')" == "$LUNA_BINUTILS_VERSION_REQUIRED" ]
2022-09-05 14:13:51 +00:00
then
exit 0
else
exit 1
fi
else
exit 1
2023-01-11 18:14:35 +00:00
fi