HomeSort by relevance Sort by last modified time
    Searched refs:COMPAT_ABI (Results 1 - 2 of 2) sorted by null

  /ndk/
ndk-gdb 551 COMPAT_ABI=none
576 COMPAT_ABI="$UNKNOWN_ABI"
584 COMPAT_ABI=$CPU_ABI64
591 if [ "$COMPAT_ABI" = none ] && [ -n "$CPU_ABILIST32" ] ; then
594 COMPAT_ABI=$CPU_ABI32
600 if [ "$COMPAT_ABI" = none ] && [ -z "$CPU_ABILIST64" ] && [ -z "$CPU_ABILIST32" ]; then
603 COMPAT_ABI=$CPU_ABI
610 if [ "$COMPAT_ABI" = none ] ; then
616 log "Compatible device ABI: $COMPAT_ABI"
619 GDBSETUP_INIT=`get_build_var_for_abi NDK_APP_GDBSETUP $COMPAT_ABI`
    [all...]
ndk-gdb.py 605 COMPAT_ABI = []
625 COMPAT_ABI = [ABI for ABI in CPU_ABILIST64.split(',') if ABI in APP_ABIS]
626 if len(COMPAT_ABI):
631 COMPAT_ABI = [ABI for ABI in CPU_ABILIST32.split(',') if ABI in APP_ABIS]
632 if not len(COMPAT_ABI):
634 COMPAT_ABI = [ABI for ABI in CPU_ABIS if ABI in APP_ABIS]
636 if not len(COMPAT_ABI):
640 COMPAT_ABI = COMPAT_ABI[0]
641 log('Compatible device ABI: %s' % (COMPAT_ABI))
    [all...]

Completed in 155 milliseconds