repo.or.cz
/
valgrind.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
aarch64: enable request_key syscall (generic wrapper)
[valgrind.git]
/
tests
/
check_ppc64le_cap
blob
9f4888834b9b3aaab589ccf2f22c1f57b0bc67cf
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
7
UNAME_M
=
"$(uname -m)"
8
9
if
[
$UNAME_M
!=
"ppc64le"
];
then
10
exit
1
11
else
12
exit
0
13
fi
14