| Index: build/detect_host_arch.py
|
| diff --git a/build/detect_host_arch.py b/build/detect_host_arch.py
|
| index 19579ebbc1376ad48da09bc12cc7e9a8c1e6561a..ccfbb6e5703641ba3255cb179717da8181ae79ef 100755
|
| --- a/build/detect_host_arch.py
|
| +++ b/build/detect_host_arch.py
|
| @@ -21,6 +21,8 @@ def HostArch():
|
| host_arch = 'x64'
|
| elif host_arch.startswith('arm'):
|
| host_arch = 'arm'
|
| + elif host_arch.startswith('mips'):
|
| + host_arch = 'mips'
|
|
|
| # 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.
|
|
|