# HG changeset patch # User andrew # Date 1390516830 0 # Node ID adc241d706d61e17fd37102c29fa6e4afa482b50 # Parent 721b1070efdacbfe1e36d9599320293bcd4acd16 PR1653: Support ppc64le via Zero diff -r 721b1070efda -r adc241d706d6 make/common/shared/Platform.gmk --- a/make/common/shared/Platform.gmk Fri Jan 17 20:22:44 2014 +0000 +++ b/make/common/shared/Platform.gmk Thu Jan 23 22:40:30 2014 +0000 @@ -154,7 +154,7 @@ # Arch and OS name/version mach := $(shell uname -m) ifneq (,$(wildcard /usr/bin/dpkg-architecture)) - mach := $(shell (dpkg-architecture -qDEB_HOST_ARCH_CPU 2>/dev/null || echo $(mach)) | sed 's/arm64/aarch64/;s/powerpc$$/ppc/;s/hppa/parisc/') + mach := $(shell (dpkg-architecture -qDEB_HOST_ARCH_CPU 2>/dev/null || echo $(mach)) | sed 's/arm64/aarch64/;s/powerpc$$/ppc/;s/hppa/parisc/;s/ppc64el/ppc64le/') endif archExpr = case "$(mach)" in \ i[3-9]86) \