Searched refs:NDK (Results 1 – 25 of 71) sorted by relevance
123
/ndk/tests/build/libc_no_atexit/ |
D | build.sh | 4 export ANDROID_NDK_ROOT=$NDK 6 NDK_BUILDTOOLS_PATH=$NDK/build/tools 7 . $NDK/build/tools/prebuilt-common.sh 12 LIB=$(cd $NDK && find platforms -name "libc.so" | sed -e 's!^!'$NDK'/!' | grep arch-$ARCH) 23 echo "ERROR: $NDK/$LIB exposes 'atexit'!" >&2 28 echo "ERROR: $NDK/$LIB exposes '__dso_handle'!" >&2 34 echo "ERROR: Did not find any libc.so in $NDK/platforms!"
|
/ndk/ |
D | README.TXT | 1 Android Native Development Kit (NDK) 4 Welcome, this NDK is designed to allow Android application developers 10 A high-level overview of the NDK's features and limitations can be found 15 this NDK, as well as the corresponding system image versions that support 18 Before using the NDK, you will need to follow the steps described by 19 docs/INSTALL.html which lists the NDK prerequisites and the steps needed 23 note that the NDK is *not* a good way to write non-JNI native code for the 26 See docs/HOWTO.html for a few useful tips and tricks when using the NDK. 29 the Android system images that all NDK developers should be aware of. 31 Finally, discussions related to the Android NDK happen on the public
|
D | GNUmakefile | 23 $(error,The Android NDK requires GNU Make 3.81 or higher to run !) 32 $(info,The Android NDK installation path contains spaces: '$(NDK_ROOT)')
|
/ndk/tests/build/warn-noabi/ |
D | build.sh | 5 export ANDROID_NDK_ROOT=$NDK 7 NDK_BUILDTOOLS_PATH=$NDK/build/tools 8 . $NDK/build/tools/prebuilt-common.sh 36 ARM_GPP=$NDK/toolchains/arm-linux-androideabi-$VERSION/prebuilt/$SYSTEM/bin/arm-linux-androideabi-g… 38 …ARM_GPP=$NDK/toolchains/arm-linux-androideabi-$VERSION/prebuilt/$SYSTEM64/bin/arm-linux-androideab…
|
/ndk/sources/cxx-stl/llvm-libc++/ |
D | README.NDK | 2 with this NDK. It's currently *EXPERIMENTAL*. 19 You need a recent NDK release, one which provides a version 24 1/ Set NDK to the path of a recent Android NDK install path 25 (Use Android NDK r8e or above), e.g.: 27 NDK=$HOME/android/ndk-r8e 31 $NDK/ndk-build -C android/test 36 $NDK/ndk-build 40 $NDK/ndk-build -C android/test V=1 55 If modifications are not obvious, read $NDK/docs/ANDROID-MK.html 59 NDK build project for two test programs that link against the [all …]
|
/ndk/build/tools/ |
D | DEV-SCRIPTS-USAGE.TXT | 2 call the "dev-scripts", that are only used to develop the NDK 15 - packaging final NDK release tarballs, including adding samples 16 and documentation which normally live in $NDK/../development/ndk 25 First, a small description of the NDK's overall directory structure: 27 $NDK/build/core 28 Contains the main NDK build system used when 'ndk-build'. 32 $NDK/build/tools 36 $NDK/sources/host-tools/ 38 compiled to generate useful host programs for the final NDK 39 installation. For example, $NDK/sources/host-tools/ndk-stack/ [all …]
|
/ndk/tests/ |
D | run-tests-all.sh | 4 NDK=`cd $PROGDIR/.. && pwd` 5 NDK_BUILDTOOLS_PATH=$NDK/build/tools 61 if [ -d "$NDK/toolchains/arm-linux-androideabi-4.8/prebuilt/$HOST_TAG" ] ; then 62 if [ -d "$NDK/toolchains/arm-linux-androideabi-4.8/prebuilt/$HOST_TAG32" ] ; then 74 if [ -d "$NDK/toolchains/arm-linux-androideabi-4.8/prebuilt/windows-x86_64" ] ; then 75 if [ -d "$NDK/toolchains/arm-linux-androideabi-4.8/prebuilt/windows" ] ; then 117 if [ "$SYSTEM" = "linux-x86" -a -d "$NDK/toolchains/arm-linux-androideabi-4.8/prebuilt/windows-x86_… 125 if [ "$SYSTEM" = "linux-x86" -a -d "$NDK/toolchains/arm-linux-androideabi-4.8/prebuilt/windows" ] ;… 171 (cd $NDK && \ 202 (cd $NDK && \ [all …]
|
D | README | 2 of the NDK. Before making a new NDK release, please run tests/run-tests.sh 8 Run all NDK automated tests. Use --help for more options. 11 Contains tests used to check the NDK build system itself. 14 Contains tests used to check that NDK-generated binaries work properly
|
D | run-tests.sh | 434 …run $NDK/$(get_llvm_toolchain_binprefix $DEFAULT_LLVM_VERSION)/clang -shared -target le32-none-ndk… 455 …GCC_TOOLCHAIN_VERSION=`cat $NDK/toolchains/llvm-$DEFAULT_LLVM_VERSION/setup.mk | grep '^TOOLCHAIN_… 456 run mkdir -p $NDK/$GNUSTL_SUBDIR/$GCC_TOOLCHAIN_VERSION/libs/$ABI 457 run mkdir -p $NDK/$GABIXX_SUBDIR/libs/$ABI 458 run mkdir -p $NDK/$LIBPORTABLE_SUBDIR/libs/$ABI 459 run gen_empty_archive $NDK/$GNUSTL_SUBDIR/$GCC_TOOLCHAIN_VERSION/libs/$ABI/libsupc++.a 460 … run gen_empty_archive $NDK/$GNUSTL_SUBDIR/$GCC_TOOLCHAIN_VERSION/libs/$ABI/libgnustl_static.a 461 … run gen_empty_bitcode $NDK/$GNUSTL_SUBDIR/$GCC_TOOLCHAIN_VERSION/libs/$ABI/libgnustl_shared.bc 462 run gen_empty_archive $NDK/$GABIXX_SUBDIR/libs/$ABI/libgabi++_static.a 463 run gen_empty_bitcode $NDK/$GABIXX_SUBDIR/libs/$ABI/libgabi++_shared.bc [all …]
|
/ndk/tests/build/merge-string-literals/ |
D | build.sh | 24 $NDK/ndk-build -C "$PROGDIR" "$@" 27 $NDK/ndk-build -C "$PROGDIR" "$@" APP_ABI="$APP_ABI" 36 make --no-print-dir -f $NDK/build/core/build-local.mk DUMP_$1 | tail -1 38 make --no-print-dir -f $NDK/build/core/build-local.mk DUMP_$1 APP_ABI="$APP_ABI" | tail -1
|
/ndk/tests/build/check-armeabi-v7a-prebuilts/ |
D | build.sh | 219 . $NDK/build/tools/dev-defaults.sh 245 ARM_READELF=$NDK/toolchains/$ARM_TOOLCHAIN_NAME/prebuilt/$HOST_TAG/bin/${ARM_TOOLCHAIN_PREFIX}-read… 254 GABIXX_LIBS=$NDK/sources/cxx-stl/gabi++/libs/$ABI 258 STLPORT_LIBS=$NDK/sources/cxx-stl/stlport/libs/$ABI 264 GNUSTL_LIBS=$NDK/sources/cxx-stl/gnu-libstdc++/$VERSION/libs/$ABI
|
/ndk/tests/build/prebuilt-copy/ |
D | build.sh | 46 $NDK/ndk-build -C "$PREBUILTS_DIR" 49 $NDK/ndk-build -C "$PREBUILTS_DIR" APP_ABI="$APP_ABI" 60 PREBUILTS_DIR=$PREBUILTS_DIR $NDK/ndk-build -C "$PROGDIR" 63 PREBUILTS_DIR=$PREBUILTS_DIR $NDK/ndk-build -C "$PROGDIR" APP_ABI="$APP_ABI"
|
/ndk/tests/build/import-install/ |
D | build.sh | 8 $NDK/ndk-build "$@" 22 ANDROID_NDK_ROOT=$NDK 23 NDK_BUILDTOOLS_PATH=$NDK/build/tools
|
/ndk/sources/cpufeatures/ |
D | README.TXT | 1 IMPORTANT: The cpufeatures library has moved to $NDK/sources/android/cpufeatures 5 reference $NDK/source/cpufeatures in their LOCAL_C_INCLUDES definition, 6 but it is DEPRECATED and will be removed in a future NDK release.
|
/ndk/tests/build/absolute-src-file-paths/ |
D | build.sh | 6 echo $NDK/ndk-build "$@" FOO_PATH="$CUR_DIR/src" 7 $NDK/ndk-build "$@" FOO_PATH="$CUR_DIR/src"
|
/ndk/tests/build/issue17144-byteswap/ |
D | build.sh | 24 $NDK/ndk-build -B APP_ABI=armeabi-v7a APP_CFLAGS=-save-temps NDK_DEBUG=1 34 $NDK/ndk-build -B APP_ABI=x86 APP_CFLAGS=-save-temps NDK_DEBUG=1 46 $NDK/ndk-build -B APP_ABI=mips APP_CFLAGS="-save-temps -mips32r2" NDK_DEBUG=1
|
/ndk/build/core/ |
D | definitions-tests.mk | 90 $(info ================= STARTING NDK-BUILD UNIT TESTS =================)\ 101 $(info @@@@@@@@@@@ FAILED $(_test_fail_count) of $(_test_count) NDK-BUILD UNIT TESTS @@@@@@@)\ 105 $(info =================== PASSED $(_test_count) NDK-BUILD UNIT TESTS =================)\
|
D | main.mk | 36 $(info Android NDK: NDK installation path auto-detected: '$(NDK_ROOT)') 103 The NDK could not find a proper application description under apps/*/Application.mk) 105 Please follow the instructions in docs/NDK-APPS.TXT to write one.)
|
D | build-local.mk | 32 $(info Android NDK: NDK installation path auto-detected: '$(NDK_ROOT)') 35 $(info Android NDK: You NDK installation path contains spaces.) 36 $(info Android NDK: Please re-install to a different location to fix the issue !) 170 …$(call __ndk_info,The Android NDK build cannot work here. Please move your project to a different …
|
/ndk/tests/build/issue64679-prctl/ |
D | build.sh | 5 export ANDROID_NDK_ROOT=$NDK 7 NDK_BUILDTOOLS_PATH=$NDK/build/tools 8 . $NDK/build/tools/prebuilt-common.sh
|
/ndk/tests/build/ndk-build-unit-tests/ |
D | build.sh | 5 $NDK/ndk-build NDK_UNIT_TESTS=1 clean
|
/ndk/tests/build/import-static/ |
D | build.sh | 8 $NDK/ndk-build "$@"
|
/ndk/tests/build/multi-module-path/ |
D | build.sh | 7 $NDK/ndk-build "$@"
|
/ndk/tests/build/warn-bad-modules/ |
D | build.sh | 4 BUILD_OUTPUT=$($NDK/ndk-build "$@" 2>&1)
|
/ndk/tests/build/warn-non-system-libs-in-linker-flags/ |
D | build.sh | 4 BUILD_OUTPUT=$($NDK/ndk-build "$@" 2>&1)
|
123