From c553b81348940dcae30ae42fb662ce4cb9867632 Mon Sep 17 00:00:00 2001 From: Luca Leonardo Scorcia Date: Thu, 2 May 2024 21:09:10 +0200 Subject: [PATCH] Fix #22 - armv5tel platform build support --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 859136c..5db3ad2 100644 --- a/setup.py +++ b/setup.py @@ -472,8 +472,8 @@ webrtc_audio_processing_sources += [ "aecm/aecm_core_neon.cc", ] -elif machine in ("armv6", "armhf", "armv6l"): - # 32-bit ARM (Raspberry Pi 1/2) +elif machine in ("armv6", "armhf", "armv6l", "armv5tel"): + # 32-bit ARM (Raspberry Pi 1/2, Kirkwood) machine_cflags += [ "-DWEBRTC_ARCH_ARM", "-DWEBRTC_ARCH_ARM_FAMILY",