Add rpath-link parameter for aarch64 build

This commit is contained in:
Fredrik Fornwall 2015-12-01 20:32:45 -05:00
parent b90c2d3261
commit 73f9ed9b54
1 changed files with 3 additions and 0 deletions

View File

@ -99,6 +99,9 @@ if [ "$TERMUX_ARCH" = "arm" ]; then
elif [ $TERMUX_ARCH = "i686" ]; then
# From $NDK/docs/CPU-ARCH-ABIS.html:
CFLAGS+=" -march=i686 -msse3 -mstackrealign -mfpmath=sse"
elif [ $TERMUX_ARCH = "aarch64" ]; then
LDFLAGS+=" -Wl,-rpath-link,$TERMUX_PREFIX/lib"
LDFLAGS+=" -Wl,-rpath-link,$TERMUX_STANDALONE_TOOLCHAIN/sysroot/usr/lib"
fi
if [ -n "$TERMUX_DEBUG" ]; then