blob: 9f4888834b9b3aaab589ccf2f22c1f57b0bc67cf [file] [log] [blame]
#!/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