Skip to content

Commit db5deca

Browse files
authored
Fixed WebRTC build failure on iOS (#4423)
1 parent e131cae commit db5deca

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

aconfigure

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11081,7 +11081,7 @@ printf "%s\n" "Checking if libwebrtc is disabled...no" >&6; }
1108111081
case $target in
1108211082
*-apple-darwin_ios*)
1108311083
case $target in
11084-
arm64*)
11084+
arm64* | aarch64*)
1108511085
ac_webrtc_instset=neon
1108611086
ac_webrtc_cflags="-DWEBRTC_ARCH_ARM64"
1108711087
;;
@@ -11234,7 +11234,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
1123411234
case $target in
1123511235
*-apple-darwin_ios*)
1123611236
case $target in
11237-
arm64*)
11237+
arm64* | aarch64*)
1123811238
ac_webrtc_aec3_instset=neon
1123911239
ac_webrtc_aec3_cflags="-DWEBRTC_ARCH_ARM64"
1124011240
;;

aconfigure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2717,7 +2717,7 @@ AC_ARG_ENABLE(libwebrtc,
27172717
case $target in
27182718
*-apple-darwin_ios*)
27192719
case $target in
2720-
arm64*)
2720+
arm64* | aarch64*)
27212721
ac_webrtc_instset=neon
27222722
ac_webrtc_cflags="-DWEBRTC_ARCH_ARM64"
27232723
;;
@@ -2837,7 +2837,7 @@ AC_ARG_ENABLE(libwebrtc_aec3,
28372837
case $target in
28382838
*-apple-darwin_ios*)
28392839
case $target in
2840-
arm64*)
2840+
arm64* | aarch64*)
28412841
ac_webrtc_aec3_instset=neon
28422842
ac_webrtc_aec3_cflags="-DWEBRTC_ARCH_ARM64"
28432843
;;

0 commit comments

Comments
 (0)