From 7fb9675ee833be1d37751c5c6aeb30159ad6a0f8 Mon Sep 17 00:00:00 2001 From: Marcus Comstedt Date: Tue, 29 Mar 2022 16:23:48 +0200 Subject: [PATCH] webrtc: Skip sse2 on everything non-Intel, not just aarch64 --- media/webrtc/trunk/moz.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media/webrtc/trunk/moz.build b/media/webrtc/trunk/moz.build index 575499ed9..ae4f3201c 100644 --- a/media/webrtc/trunk/moz.build +++ b/media/webrtc/trunk/moz.build @@ -149,7 +149,7 @@ if CONFIG["OS_TARGET"] == "Linux": "/media/webrtc/trunk/webrtc/video_engine/video_engine_gn" ] -if CONFIG["CPU_ARCH"] != "aarch64" and CONFIG["OS_TARGET"] == "Linux": +if CONFIG['INTEL_ARCHITECTURE'] and CONFIG["OS_TARGET"] == "Linux": DIRS += [ "/media/webrtc/trunk/webrtc/common_audio/common_audio_sse2_gn", "/media/webrtc/trunk/webrtc/modules/audio_processing/audio_processing_sse2_gn", -- 2.35.1