Index: build/detect_host_arch.py |
diff --git a/build/detect_host_arch.py b/build/detect_host_arch.py |
index ccfbb6e5703641ba3255cb179717da8181ae79ef..8d6a1ba9177524cc0962ac5b4871ce169911a7ae 100755 |
--- a/build/detect_host_arch.py |
+++ b/build/detect_host_arch.py |
@@ -23,6 +23,11 @@ def HostArch(): |
host_arch = 'arm' |
elif host_arch.startswith('mips'): |
host_arch = 'mips' |
+ elif host_arch.startswith('ppc'): |
+ host_arch = 'ppc' |
+ elif host_arch.startswith('s390'): |
+ host_arch = 's390' |
+ |
# platform.machine is based on running kernel. It's possible to use 64-bit |
# kernel with 32-bit userland, e.g. to give linker slightly more memory. |