Skip to content

Commit

Permalink
Merge pull request #23 from lscorcia/issue-22
Browse files Browse the repository at this point in the history
Fix #22 - armv5tel platform build support
  • Loading branch information
synesthesiam authored Jul 5, 2024
2 parents 5c336ff + c553b81 commit 5dcc69f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 5dcc69f

Please sign in to comment.