From c1f9762c91d9ad41dee52fad5ac1488897c774ff Mon Sep 17 00:00:00 2001 From: zoff99 Date: Fri, 15 Nov 2024 18:56:55 +0100 Subject: [PATCH] use the regular linux archiver --- circle_scripts/deps.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/circle_scripts/deps.sh b/circle_scripts/deps.sh index 4ebbaa048..411cf6893 100755 --- a/circle_scripts/deps.sh +++ b/circle_scripts/deps.sh @@ -331,7 +331,7 @@ if [ "$full""x" == "1x" ]; then export CFLAGS=" -g -O3 -fPIC $CF2 $CF3 -I${_NDK_}/sources/android/cpufeatures "; CC=$AND_CC \ CXX=$AND_CXX \ - AR="$_toolchain_"/arm-linux-androideabi/bin/arm-linux-androideabi-ar \ + AR=ar \ LD=$AND_CC \ AS=$AND_AS \ STRIP=strip \ @@ -969,7 +969,7 @@ if [ "$full""x" == "1x" ]; then export CFLAGS=" -g -O3 -fPIC $CF2 $CF3 -I${_NDK_}/sources/android/cpufeatures "; CC=$AND_CC \ CXX=$AND_CXX \ - AR="$_toolchain_"/"$AND_TOOLCHAIN_ARCH"/bin/aarch64-linux-android-ar \ + AR=ar \ LD=$AND_CC \ AS=$AND_AS \ STRIP=strip \ @@ -1557,7 +1557,7 @@ if [ "$full""x" == "1x" ]; then export CFLAGS=" -g -O3 -fPIC $CF2 $CF3 -I${_NDK_}/sources/android/cpufeatures "; CC=$AND_CC \ CXX=$AND_CXX \ - AR="$_toolchain_"/"$AND_TOOLCHAIN_ARCH"/bin/i686-linux-android-ar \ + AR=ar \ LD=$AND_CC \ AS=$AND_AS \ STRIP=strip \ @@ -1990,7 +1990,7 @@ if [ "$full""x" == "1x" ]; then export CFLAGS=" -g -O3 -fPIC $CF2 $CF3 -I${_NDK_}/sources/android/cpufeatures "; CC=$AND_CC \ CXX=$AND_CXX \ - AR="$_toolchain_"/"$AND_TOOLCHAIN_ARCH"/bin/x86_64-linux-android-ar \ + AR=ar \ LD=$AND_CC \ AS=$AND_AS \ STRIP=strip \