mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 18:13:01 +00:00
15 lines
235 B
Bash
Executable File
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
|
|
|