Searched refs:ABI (Results 1 - 25 of 45) sorted by relevance

12

/ndk/build/tools/
H A Dbuild-compiler-rt.sh171 # $1: ABI
174 local ABI=$1
177 if [ $ABI = "armeabi" -o $ABI = "armeabi-v7a" -o $ABI = "armeabi-v7a-hard" ]; then
179 elif [ $ABI = "x86" ]; then
181 elif [ $ABI = "mips" -o $ABI = "mips32r6" ]; then
183 elif [ $ABI = "x86_64" ]; then
190 # if we have lib/$ABI/*
[all...]
H A Dbuild-gnu-libstdc++.sh114 # $1: ABI name
122 local ABI=$1
127 local DSTDIR=$NDK_DIR/$GNUSTL_SUBDIR/$GCC_VERSION/libs/$ABI/$THUMB
130 prepare_target_build $ABI $PLATFORM $NDK_DIR
133 INSTALLDIR=$BUILDDIR/install-$ABI-$GCC_VERSION/$THUMB
134 BUILDDIR=$BUILDDIR/$LIBTYPE-${ABI}${THUMB}-$GCC_VERSION
138 ARCH=$(convert_abi_to_arch $ABI)
226 case $ABI in
230 if [ "$ABI" != "armeabi-v7a-hard" ]; then
243 if [ "$ABI"
[all...]
H A Dbuild-on-device-toolchain.sh32 ABI=armeabi-v7a
33 register_var_option "--abi=<target>" ABI "List which emulator target you use"
77 ARCH="$(convert_abi_to_arch $ABI)"
92 dump "Copy $ABI gabi++ library"
93 run cp -f $NDK_DIR/$GABIXX_SUBDIR/libs/$ABI/libgabi++_shared.so $OUT_SYSROOT/usr/lib
95 dump "Copy $ABI libportable library"
96 run cp -f $NDK_DIR/$LIBPORTABLE_SUBDIR/libs/$ABI/libportable.a $OUT_SYSROOT/usr/lib
97 run cp -f $NDK_DIR/$LIBPORTABLE_SUBDIR/libs/$ABI/libportable.wrap $OUT_SYSROOT/usr/lib
99 dump "Copy $ABI compiler-rt library"
100 run cp -f $NDK_DIR/$COMPILER_RT_SUBDIR/libs/$ABI/libcompiler_rt_stati
[all...]
H A Dbuild-cxx-stl.sh508 # $1: ABI
516 local ABI=$1
529 case $ABI in
566 DSTDIR=$DSTDIR/$CXX_STL_SUBDIR/libs/$ABI/$THUMB
567 LIB_SUFFIX="$(get_lib_suffix_for_abi $ABI)"
576 ARCH=$(convert_abi_to_arch $ABI)
580 # libc++ built with clang (for ABI armeabi-only) produces
590 if [ "$ABI" = "armeabi" ]; then
604 builder_begin_android $ABI "$BUILDDIR" "$GCCVER" "$LLVM_VERSION" "$MAKEFILE"
615 if [ "$(find_ndk_unknown_archs)" != "$ABI" ]; the
[all...]
H A Dbuild-libportable.sh122 # $1: ABI
128 local ABI=$1
137 DSTDIR=$NDK_DIR/$LIBPORTABLE_SUBDIR/libs/$ABI
141 ARCH=$(convert_abi_to_arch $ABI)
151 builder_begin_android $ABI "$BUILDDIR" "$GCCVER" "$LLVM_VERSION" "$MAKEFILE" "$PLATFORM"
182 for ABI in $ABIS; do
184 ARCH=$(convert_abi_to_arch $ABI)
188 build_libportable_libs_for_abi $ABI "$BUILD_DIR/$ABI" "$OUT_DIR"
193 for ABI i
[all...]
H A Dbuilder-funcs.sh510 # Same as builder_begin, but to target Android with a specific ABI
511 # $1: ABI name (e.g. armeabi)
519 local ABI BUILDDIR LLVM_VERSION MAKEFILE
529 ABI=$1
534 ARCH=$(convert_abi_to_arch $ABI)
542 if [ "$ABI" != "${ABI%%64*}" ]; then
565 LDIR=$SYSROOT"/usr/"$(get_default_libdir_for_abi $ABI)
580 builder_set_prefix "$ABI "
585 case $ABI i
[all...]
H A Dmake-standalone-toolchain.sh537 cp -a $NDK_DIR/$GABIXX_SUBDIR/libs/$ABI/* $TMPDIR/sysroot/usr/lib
538 cp -a $NDK_DIR/$LIBPORTABLE_SUBDIR/libs/$ABI/* $TMPDIR/sysroot/usr/lib
539 cp -a $NDK_DIR/$GCCUNWIND_SUBDIR/libs/$ABI/* $TMPDIR/sysroot/usr/lib
541 cp -a $NDK_DIR/$COMPILER_RT_SUBDIR/libs/$ABI/* $TMPDIR/sysroot/usr/lib
619 # $1: Source ABI (e.g. 'armeabi')
625 local ABI=$1
630 local ABI_SRC_DIR=$ABI
633 ABI_SRC_DIR=$ABI/$SRC_DIR
636 ABI_SRC_DIR=$ABI/`basename $DEST_DIR`
643 copy_directory "$GNUSTL_LIBS/$ABI/includ
[all...]
H A Dprebuilt-common.sh578 # TOOLCHAIN AND ABI PROCESSING
1076 # Determine ABI based on toolchain name
1081 ABI="armeabi"
1087 ABI="armeabi"
1093 ABI="arm64-v8a"
1098 ABI=$ARCH
1107 ABI=$ARCH
1116 ABI=$ARCH
1131 ABI=$ARCH
1301 # Get library suffix for given ABI
[all...]
H A Dbuild-ndk-sysroot.sh28 # WARNING: For now, only a single target ABI/Architecture us supported
36 # ABI is the target ABI name for the NDK
37 ABI=arm
85 echo " --abi=<name> generate sysroot for abi <name> (default is $ABI)"
97 ABI=$OPTION_ABI
100 case "$ABI" in
105 ARCH=$ABI
134 SYSROOT=$NDK_ROOT/build/platforms/$PLATFORM/arch-$ABI
H A Dbuild-gcc.sh265 OLD_ABI="${ABI}"
270 export ABI=$HOST_GMP_ABI
405 ABI="$OLD_ABI"
410 export ABI=$HOST_GMP_ABI
437 ABI="$OLD_ABI"
455 local ABI="$1"
458 case $ABI in
514 local ABI UNWIND_OBJS UNWIND_LIB
515 for ABI in $ABIS; do
516 UNWIND_OBJS=$(unwind_library_for_abi $ABI)
[all...]
H A Dpackage-release.sh393 for ABI in $ABIS; do
394 unpack_prebuilt gabixx-libs-$ABI-g "$REFERENCE"
395 unpack_prebuilt stlport-libs-$ABI-g "$REFERENCE"
396 unpack_prebuilt libcxx-libs-$ABI-g "$REFERENCE"
398 unpack_prebuilt gnu-libstdc++-libs-$VERSION-$ABI-g "$REFERENCE"
400 unpack_prebuilt libportable-libs-$ABI "$REFERENCE"
401 unpack_prebuilt compiler-rt-libs-$ABI "$REFERENCE"
402 unpack_prebuilt libgccunwind-libs-$ABI "$REFERENCE"
/ndk/tests/build/b14811006-GOT_PREL-optimization/
H A Dbuild.sh52 for ABI in $APP_ABI; do
53 $NDK/ndk-build -B APP_ABI=$ABI APP_CFLAGS=-save-temps
54 fail_panic "can't compile for APP_ABI=$ABI"
56 fail_panic "Fail to optimize GOT access with GOT_PREL, ABI=$ABI."
/ndk/tests/build/import-install/
H A Dbuild.sh26 for ABI in $ABIS; do
27 DIR=$PWD/libs/$ABI
28 SUFFIX=$(get_lib_suffix_for_abi $ABI)
/ndk/tests/build/prebuilt-copy/
H A Dbuild.sh77 for ABI in $ABIS; do
78 printf "Checking for $ABI shared library: "
79 SHARED_LIB=$(ls $OUT/*$ABI/libfoo.so 2>/dev/null)
87 printf "Checking for $ABI static library: "
88 STATIC_LIB=$(ls $OUT/*$ABI/libbar.a 2>/dev/null)
/ndk/tests/standalone/
H A Drun.sh50 ABI=
63 ABI=$optarg
115 echo "The target ABI is normally auto-detected from the toolchain, but you can specify an"
117 echo "default ABI is 'armeabi' targetting the ARMv5TE instruction set. If you want to check"
124 echo "to display the list of all tests that are relevant for your current ABI."
133 echo " --list List all available tests for current ABI."
137 echo " --abi=<name> Specify target ABI name."
215 elif [ -f "$DIR/run-$ABI.sh" ]; then
217 SCRIPT=run-$ABI.sh
238 if [ -z "$ABI" ]; the
[all...]
/ndk/tests/abcc/
H A Dbuild-abcc.sh96 for ABI in $ABIS; do
97 run $BUILDTOOLS/build-on-device-toolchain.sh --ndk-dir=$NDK_DIR --build-dir=$BUILD_DIR --out-dir=$ABCC_PREBUILT_ASSETS/$ABI --abi=$ABI --no-sync $FLAGS $SRC_DIR
144 for ABI in $ABIS; do
146 run $NDK_DIR/ndk-build -B APP_ABI=$ABI -C jni
151 run ant debug -Dasset.dir=prebuilts/assets/$ABI
153 run cp -a bin/$ABCC-debug.apk $OUT_DIR/$ABCC-$ABI.apk
155 run ant release -Dasset.dir=prebuilts/assets/$ABI
157 run cp -a bin/$ABCC-release-unsigned.apk $OUT_DIR/$ABCC-$ABI-unsigned.apk
/ndk/tests/build/check-armeabi-v7a-prebuilts/
H A Dbuild.sh5 # properly built targetting VFPv3-D16, as per the ABI spec.
111 # Check that an ELF binary is compatible with our armeabi-v7a ABI
252 for ABI in $ARMv7_ABIS; do
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/issue64679-prctl/
H A Dbuild.sh37 for ABI in $ABIS; do
39 PROJECT_DIR=${TMPDIR:-/tmp}/$USER-ndk-test-system-headers/android-$API_LEVEL-$ABI
45 APP_ABI=$ABI
61 if [ "$ABI" != "${ABI%%64*}" ] ; then
82 echo "Checking headers for android-$API_LEVEL/$ABI"
84 fail_panic "Can't compile header for android-$API_LEVEL/$ABI, to reproduce: $ANDROID_NDK_ROOT/ndk-build -C $PROJECT_DIR"
87 done # for ABI
/ndk/tests/
H A Drun-tests.sh55 ABI=default
89 ABI="$optarg"
168 echo " --abi=<name> Only run tests for the specific ABI [$ABI]"
443 case $ABI in
447 NDK_BUILD_FLAGS="$NDK_BUILD_FLAGS APP_ABI=$ABI"
450 if [ -n "$(filter_out "$PREBUILT_ABIS" "$ABI")" ] && [ -n "$(find_ndk_unknown_archs)" ]; then
451 ABI=$(find_ndk_unknown_archs)
452 NDK_BUILD_FLAGS="$NDK_BUILD_FLAGS APP_ABI=$ABI"
456 run mkdir -p $NDK/$GNUSTL_SUBDIR/$GCC_TOOLCHAIN_VERSION/libs/$ABI
[all...]
/ndk/tests/standalone/builtin-macros/
H A Drun.sh126 case $ABI in
131 case $ABI in
143 case $ABI in
191 macro_check _MIPS_ARCH_MIPS32 1 "Mips 32-bit ABI"
233 echo "Unknown ABI: $ABI"
241 if [ "$ABI" = "${ABI%%64*}" ]; then
/ndk/build/core/
H A Dadd-platform.mk28 # Record the sysroots for each supported ABI
32 $(call ndk_log, ABI $(_abi) sysroot is: $(NDK_PLATFORM_$(_platform)_$(_abi)_SYSROOT))\
/ndk/tests/device/b8708181-Vector4/jni/
H A DAndroid.mk10 # x86 ABI was recently changed to gen SSSE3 by default. Disable it in order
/ndk/
H A Dndk-build308 local ABI=$2
310 $GNUMAKE --no-print-dir -f $PROGDIR/build/core/build-local.mk $FLAGS DUMP_${VAR} APP_ABI=${ABI} | tail -1
314 for ABI in $APP_ABIS; do
315 TOOLCHAIN_PREFIX=`get_build_var_for_abi TOOLCHAIN_PREFIX $ABI`
317 --use-analyzer $PROGDIR/toolchains/llvm-${DEFAULT_LLVM_VERSION}/prebuilt/$HOST_TAG/bin/${ABI}/analyzer \
321 $GNUMAKE -f $PROGDIR/build/core/build-local.mk "$@" APP_ABI=$ABI
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/
H A Dtestit_android139 The toolchain and device must match your target ABI. For example, if
146 --abi=<name> Specify target ABI. Use --abi=list for list.
154 # Check target ABI.
157 for ABI in $VALID_ABIS; do
158 printf " %s" $ABI
165 echo "ERROR: Please specify a target ABI (--abi=<name>)."
170 for ABI in $VALID_ABIS; do
171 if [ "$ABI" = "$TARGET_ABI" ]; then
236 echo "ERROR: Unknown ABI '$ABI'"
[all...]
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/
H A Dtestit_android135 The toolchain and device must match your target ABI. For example, if
142 --abi=<name> Specify target ABI. Use --abi=list for list.
150 # Check target ABI.
153 for ABI in $VALID_ABIS; do
154 printf " %s" $ABI
161 echo "ERROR: Please specify a target ABI (--abi=<name>)."
166 for ABI in $VALID_ABIS; do
167 if [ "$ABI" = "$TARGET_ABI" ]; then
230 echo "ERROR: Unknown ABI '$ABI'"
[all...]

Completed in 2768 milliseconds

12