blob: 482aaf972989428d6ebd6e7496159a52bc6d96ed (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- src/webrtc/src/build/detect_host_arch.py.orig 2023-03-09 06:31:50 UTC
+++ src/webrtc/src/build/detect_host_arch.py
@@ -20,6 +20,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'):
|