autogen in arm64 configure, correct make file name

This commit is contained in:
Ugljesa Jovanovic 2020-06-10 20:32:03 +02:00 committed by Ugljesa Jovanovic
parent efc81b2d9d
commit ff05f79b23
No known key found for this signature in database
GPG Key ID: 178E6DFCECCB0E0F
2 changed files with 2 additions and 1 deletions

View File

@ -3,7 +3,7 @@
./gradlew multiplatform-crypto-api:build
#now let's build linux deps
cd sodiumWrapper
./makeLinux64.sh
./makeLinuxX86-64.sh
./makeLinuxArm64.sh
#now we can do the delegated build
cd ..

View File

@ -8,5 +8,6 @@ export TOOLCHAIN=$HOME/.konan/dependencies/target-gcc-toolchain-3-linux-x86-64/x
export CFLAGS="-O3 -target aarch64-unknown-linux-gnu --sysroot $SYSROOT -fuse-ld=$CLANG_BIN/ld.lld"
export LDFLAGS="-fuse-ld=$CLANG_BIN/ld.lld"
cd libsodium
./autogen.sh -s -f
./configure --prefix=$PREFIX --with-sysroot=$SYSROOT --host=aarch64-unknown-linux-gnu "$@"