Skip to content

Commit

Permalink
Update for Android NDK r13
Browse files Browse the repository at this point in the history
Android NDK r13 appears to have removed a level of nesting
within LLVM libc++. The "libcxx" subdirectory no longer exists.
  • Loading branch information
modocache committed Oct 24, 2016
1 parent cca79df commit 3db7380
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setCrossEnvironment-armeabi-v7a.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ STL_CFLAGS="-isystem$NDK/sources/cxx-stl/gnu-libstdc++/$GCCVER/include \
STL_LDFLAGS="-L$NDK/sources/cxx-stl/gnu-libstdc++/$GCCVER/libs/$ARCH"
STL_LDLIB="-lgnustl_shared -lsupc++"
if [[ "$NDK_STL" == "libc++" ]] ; then
STL_CFLAGS="-isystem$NDK/sources/cxx-stl/llvm-libc++/libcxx/include"
STL_CFLAGS="-isystem$NDK/sources/cxx-stl/llvm-libc++/include"
STL_LDFLAGS="-L$NDK/sources/cxx-stl/llvm-libc++/libs/$ARCH"
STL_LDLIB="-lc++_shared"
fi
Expand Down

0 comments on commit 3db7380

Please sign in to comment.