Index: build/detect_v8_host_arch.py |
diff --git a/build/detect_v8_host_arch.py b/build/detect_v8_host_arch.py |
index f66383b5c5fdbeadeebf216ee538fd8ddb1d6b98..3460a9a404f0ce459e6a3ac4f159cf6b06afb0d0 100644 |
--- a/build/detect_v8_host_arch.py |
+++ b/build/detect_v8_host_arch.py |
@@ -51,6 +51,8 @@ def DoMain(_): |
host_arch = 'arm' |
elif host_arch == 'aarch64': |
host_arch = 'arm64' |
+ elif host_arch == 'mips64': |
+ host_arch = 'mips64el' |
elif host_arch.startswith('mips'): |
host_arch = 'mipsel' |