1#!/bin/sh
2
3# Helper script to indicate if we are ppc64 LE.
4# Note: The ELFV2 ABI (for ppc64le) specifically does not
5# support the 32-bit environment.
6
7UNAME_M="$(uname -m)"
8
9if [ $UNAME_M != "ppc64le" ]; then
10	exit 1
11else
12	exit 0
13fi
14
15