Changeset 5409 for pjproject/trunk/configure-android
- Timestamp:
- Aug 5, 2016 4:42:48 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/configure-android
r5389 r5409 63 63 fi 64 64 65 NDK_OUT=`${ANDROID_NDK_ROOT}/ndk-build -n -C ${ANDROID_NDK_ROOT}/samples/hello-jni NDK_TOOLCHAIN_VERSION=4.8APP_PLATFORM=${APP_PLATFORM} APP_ABI=${TARGET_ABI}`65 NDK_OUT=`${ANDROID_NDK_ROOT}/ndk-build -n -C pjsip-apps/src/samples/android_sample APP_PLATFORM=${APP_PLATFORM} APP_ABI=${TARGET_ABI}` 66 66 if test ! "${NDK_OUT}"; then 67 67 echo "$F error: failed to run ndk-build, check ANDROID_NDK_ROOT env var" … … 73 73 74 74 # Parse NDK CXXFLAGS 75 if test "x${NDK_CXX}" != "x" -a "x`echo $i|grep ' hello-jni'`" = "x"; then75 if test "x${NDK_CXX}" != "x" -a "x`echo $i|grep 'dummy'`" = "x"; then 76 76 if test "x`echo $i|grep '\-\-sysroot='`" != "x"; then 77 77 ANDROID_SYSROOT=`echo $i|sed 's/--sysroot=//'`; … … 81 81 82 82 # Parse NDK CFLAGS 83 if test "x${NDK_CC}" != "x" -a "x`echo $i|grep ' hello-jni'`" = "x" -a "${ADD_CFLAGS}" = "1"; then83 if test "x${NDK_CC}" != "x" -a "x`echo $i|grep 'dummy'`" = "x" -a "${ADD_CFLAGS}" = "1"; then 84 84 if test "$i" = "-c"; then ADD_CFLAGS="0"; else 85 85 if test "x`echo $i|grep ${IGNORE_CFLAGS}`" = "x"; then
Note: See TracChangeset
for help on using the changeset viewer.