Commit c8fa68e5 authored by Dan Albert's avatar Dan Albert
Browse files

Fix libc++ support lib for standalone toolchains.

libc++ always uses libc++abi, never gabi++.

Change-Id: I8762ffbe0fecc171391571fe609fef0e738ed688
parent c21012c1
......@@ -411,14 +411,7 @@ STLPORT_LIBS=$STLPORT_DIR/libs
LIBCXX_DIR=$NDK_DIR/$LIBCXX_SUBDIR
LIBCXX_LIBS=$LIBCXX_DIR/libs
case $ARCH in
x86|x86_64|mips|mips64)
LIBCXX_SUPPORT_LIB=gabi++
;;
*)
LIBCXX_SUPPORT_LIB=libc++abi
;;
esac
LIBCXX_SUPPORT_LIB=libc++abi
SUPPORT_DIR=$NDK_DIR/$SUPPORT_SUBDIR
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment