mirror of
https://github.com/jedisct1/libsodium.git
synced 2024-12-19 10:05:05 -07:00
c3d0f1b666
* Update android-armv7-a.sh update HOST_COMPILER variable to be compatible with updated android-build.sh that supports latest ndk and use of prebuilt toolchains. * Update android-build.sh update to allow use of prebuilt toolchains in latest ndk. The latest ndk does not support arm prior to armv7a and the HOST_COMPILER for armv7a must now be armv7a not just arm. * Delete android-arm.sh arm prior to armv7a is no longer supported by android ndk. * Update android-build.sh removing unneeded MAKE_TOOLCHAIN variable * Update Makefile.am removing obsolete android targets * Delete android-mips32.sh * Delete android-mips64.sh
5 lines
211 B
Bash
Executable File
5 lines
211 B
Bash
Executable File
#!/bin/sh
|
|
export TARGET_ARCH=armv7-a
|
|
export CFLAGS="-Os -mfloat-abi=softfp -mfpu=vfpv3-d16 -mthumb -marm -march=${TARGET_ARCH}"
|
|
ARCH=arm HOST_COMPILER=armv7a-linux-androideabi "$(dirname "$0")/android-build.sh"
|