Skip to content

Commit fc94fca

Browse files
committed
Merge branch 'Tellybean-unify_arm_architecture_strings'
2 parents 263878f + 26ba2c3 commit fc94fca

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

android/build.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -206,11 +206,11 @@ execute_build() {
206206
then
207207
ARCH="x64"
208208
STRIP="$ANDROID_TOOLCHAINS/x86_64-4.9/prebuilt/linux-x86_64/bin/x86_64-linux-android-strip"
209-
elif [ "$WEBRTC_ARCH" = "armeabi-v7a" ] ;
209+
elif [ "$WEBRTC_ARCH" = "armv7" ] ;
210210
then
211211
ARCH="arm"
212212
STRIP="$ANDROID_TOOLCHAINS/arm-linux-androideabi-4.9/prebuilt/linux-x86_64/bin/arm-linux-androideabi-strip"
213-
elif [ "$WEBRTC_ARCH" = "arm64-v8a" ] ;
213+
elif [ "$WEBRTC_ARCH" = "armv8" ] ;
214214
then
215215
ARCH="arm64"
216216
STRIP="$ANDROID_TOOLCHAINS/aarch64-linux-android-4.9/prebuilt/linux-x86_64/bin/aarch64-linux-android-strip"
@@ -302,11 +302,11 @@ get_webrtc() {
302302

303303
# Updates webrtc and builds apprtc
304304
build_apprtc() {
305-
export WEBRTC_ARCH=armeabi-v7a
305+
export WEBRTC_ARCH=armv7
306306
prepare_gyp_defines &&
307307
execute_build
308308

309-
export WEBRTC_ARCH=arm64-v8a
309+
export WEBRTC_ARCH=armv8
310310
prepare_gyp_defines &&
311311
execute_build
312312

0 commit comments

Comments
 (0)