summaryrefslogtreecommitdiff
path: root/lang/v8/files/patch-build_detect__host__arch.py
blob: 58889666260701b0381b3bfc18b03366596df1aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
--- build/detect_host_arch.py.orig	2019-07-24 18:58:02 UTC
+++ build/detect_host_arch.py
@@ -21,6 +21,8 @@ def HostArch():
     host_arch = 'ia32'
   elif host_arch in ['x86_64', 'amd64']:
     host_arch = 'x64'
+  elif host_arch.startswith('arm64'):
+    host_arch = 'arm64'
   elif host_arch.startswith('arm'):
     host_arch = 'arm'
   elif host_arch.startswith('aarch64'):