Differential D38165 Diff 118368 www/qt5-webengine/files/patch-src_3rdparty_chromium_build_detect__host__arch.py
Changeset View
Changeset View
Standalone View
Standalone View
www/qt5-webengine/files/patch-src_3rdparty_chromium_build_detect__host__arch.py
--- src/3rdparty/chromium/build/detect_host_arch.py.orig 2019-05-23 12:39:34 UTC | --- src/3rdparty/chromium/build/detect_host_arch.py.orig 2021-12-15 16:12:54 UTC | ||||
+++ src/3rdparty/chromium/build/detect_host_arch.py | +++ src/3rdparty/chromium/build/detect_host_arch.py | ||||
@@ -19,6 +19,8 @@ def HostArch(): | @@ -21,6 +21,8 @@ def HostArch(): | ||||
host_arch = 'ia32' | host_arch = 'ia32' | ||||
elif host_arch in ['x86_64', 'amd64']: | elif host_arch in ['x86_64', 'amd64']: | ||||
host_arch = 'x64' | host_arch = 'x64' | ||||
+ elif host_arch.startswith('arm64'): | + elif host_arch.startswith('arm64'): | ||||
+ host_arch = 'arm64' | + host_arch = 'arm64' | ||||
elif host_arch.startswith('arm'): | elif host_arch.startswith('arm'): | ||||
host_arch = 'arm' | host_arch = 'arm' | ||||
elif host_arch.startswith('aarch64'): | elif host_arch.startswith('aarch64'): |