Skip to content

Commit

Permalink
Fixed WebRTC AEC&AEC3 build for ARMv7 (#3992)
Browse files Browse the repository at this point in the history
  • Loading branch information
sauwming authored Jun 19, 2024
1 parent 28c54a4 commit 77f8ad5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions aconfigure
Original file line number Diff line number Diff line change
Expand Up @@ -10340,7 +10340,7 @@ printf "%s\n" "Checking if libwebrtc is disabled...no" >&6; }
case $target in
armv7l*gnueabihf)
ac_webrtc_instset=neon
ac_webrtc_cflags="-DWEBRTC_ARCH_ARMV7 -mfloat-abi=hard -mfpu=neon"
ac_webrtc_cflags="-DWEBRTC_ARCH_ARM_V7 -mfloat-abi=hard -mfpu=neon"
;;
arm-apple-darwin* | aarch64*)
ac_webrtc_instset=neon
Expand Down Expand Up @@ -10458,7 +10458,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
case $target in
armv7l*gnueabihf)
ac_webrtc_aec3_instset=neon
ac_webrtc_aec3_cflags="-DWEBRTC_ARCH_ARMV7 -mfloat-abi=hard -mfpu=neon"
ac_webrtc_aec3_cflags="-DWEBRTC_ARCH_ARM_V7 -mfloat-abi=hard -mfpu=neon"
;;
arm-apple-darwin* | aarch64*)
ac_webrtc_aec3_instset=neon
Expand Down
4 changes: 2 additions & 2 deletions aconfigure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2482,7 +2482,7 @@ AC_ARG_ENABLE(libwebrtc,
case $target in
armv7l*gnueabihf)
ac_webrtc_instset=neon
ac_webrtc_cflags="-DWEBRTC_ARCH_ARMV7 -mfloat-abi=hard -mfpu=neon"
ac_webrtc_cflags="-DWEBRTC_ARCH_ARM_V7 -mfloat-abi=hard -mfpu=neon"
;;
arm-apple-darwin* | aarch64*)
ac_webrtc_instset=neon
Expand Down Expand Up @@ -2569,7 +2569,7 @@ AC_ARG_ENABLE(libwebrtc_aec3,
case $target in
armv7l*gnueabihf)
ac_webrtc_aec3_instset=neon
ac_webrtc_aec3_cflags="-DWEBRTC_ARCH_ARMV7 -mfloat-abi=hard -mfpu=neon"
ac_webrtc_aec3_cflags="-DWEBRTC_ARCH_ARM_V7 -mfloat-abi=hard -mfpu=neon"
;;
arm-apple-darwin* | aarch64*)
ac_webrtc_aec3_instset=neon
Expand Down

0 comments on commit 77f8ad5

Please sign in to comment.