ftmemsim-valgrind/tests/check_ppc64le_cap
Carl Love 4fb69b51c6 Set tests/check_ppc64le_cap to executable.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@15258
2015-05-19 16:16:52 +00:00

15 lines
235 B
Bash
Executable File

#!/bin/sh
# Helper script to indicate if we are ppc64 LE.
# Note: The ELFV2 ABI (for ppc64le) specifically does not
# support the 32-bit environment.
UNAME_M="$(uname -m)"
if [ $UNAME_M != "ppc64le" ]; then
exit 1
else
exit 0
fi