Home | History | Annotate | Download | only in test

Lines Matching refs:ABI

98     --abi=*)
99 TARGET_ABI=${OPT##--abi=}
139 The toolchain and device must match your target ABI. For example, if
140 you use --abi=armeabi-v7a, your device must run ARMv7-A Android binaries,
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
178 echo "ERROR: Invalid abi '$TARGET_ABI'. Must be one of: $VALID_ABIS"
236 echo "ERROR: Unknown ABI '$ABI'"