Add support for ppc64le architecture.

This commit is contained in:
Peeyush Gupta
2015-12-09 12:12:13 +05:30
parent a486977e19
commit 4774e7146e
4 changed files with 15 additions and 4 deletions

View File

@@ -73,8 +73,11 @@ case "$(uname -m)" in
s390x*)
host_arch=s390x
;;
ppc64le*)
host_arch=ppc64le
;;
*)
echo "Unsupported host arch. Must be x86_64, 386, arm or s390x." >&2
echo "Unsupported host arch. Must be x86_64, 386, arm, s390x or ppc64le." >&2
exit 1
;;
esac