Home | History | Annotate | Download | only in tools

Lines Matching refs:ARCH

530 # $2: platform/arch suffix
550 SYSROOT_SUFFIX=$PLATFORM/arch-$ARCH
1006 ARCH="arm"
1009 ABI_CONFIGURE_EXTRA_FLAGS="--with-arch=armv5te"
1012 ARCH="arm"
1015 ABI_CONFIGURE_EXTRA_FLAGS="--with-arch=armv5te --disable-gold"
1018 ARCH="arm"
1028 ARCH="x86"
1029 ABI=$ARCH
1037 ARCH="x86_64"
1038 ABI=$ARCH
1046 ARCH="mips"
1047 ABI=$ARCH
1051 ABI_CONFIGURE_EXTRA_FLAGS="--with-arch=mips32"
1069 log "Targetting CPU: $ARCH"
1142 arch names
1150 RESULT=$(ls $NDK_DIR/platforms/android-* | grep "arch-")
1151 for arch in $RESULT; do
1152 arch=$(basename $arch | sed -e 's/^arch-//')
1153 FOUND_ARCHS="$FOUND_ARCHS $arch"
1159 # Return: arch names not in ndk default archs
1163 # TODO: x86_64 is here just to be found as known arch.
1168 # Determine whether given arch is in unknown archs list
1169 # $1: arch
1183 # Result: Arch name
1212 # $1: ARCH name
1217 local ARCH=$1
1218 case $ARCH in
1229 if [ "$(arch_in_unknown_archs $ARCH)" = "yes" ]; then
1230 RET=$ARCH
1232 >&2 echo "ERROR: Unsupported ARCH name: $ARCH, use one of: arm, x86, mips"
1241 # $1: ARCH names list (separated by spaces or commas)
1246 for ARCH in $(commas_to_spaces $@); do
1247 ABI=$(convert_arch_to_abi $ARCH)
1299 # Return default API level for a given arch
1319 echo "platforms/android-$LEVEL/arch-$1"
1325 local ARCH=$(convert_abi_to_arch $1)
1326 $(get_default_platform_sysroot_for_arch $ARCH)