OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:COMPAT_ABI
(Results
1 - 2
of
2
) sorted by null
/ndk/
ndk-gdb
535
COMPAT_ABI
=none
549
COMPAT_ABI
=$CPU_ABI
554
if [ "$
COMPAT_ABI
" = none ] ; then
560
log "Compatible device ABI: $
COMPAT_ABI
"
563
GDBSETUP_INIT=`get_build_var_for_abi NDK_APP_GDBSETUP $
COMPAT_ABI
`
566
TOOLCHAIN_PREFIX=`get_build_var_for_abi TOOLCHAIN_PREFIX $
COMPAT_ABI
`
569
APP_OUT=`get_build_var_for_abi TARGET_OUT $
COMPAT_ABI
`
579
if [ -f $PROJECT/libs/$
COMPAT_ABI
/gdbserver ] ; then
580
log "Found gdbserver under libs/$
COMPAT_ABI
, assuming app was built with NDK_DEBUG=1"
595
if [ ! -f $PROJECT/libs/$
COMPAT_ABI
/gdbserver ] ; the
[
all
...]
ndk-gdb.py
578
COMPAT_ABI
= []
585
COMPAT_ABI
= [ABI for ABI in CPU_ABIS if ABI in APP_ABIS]
587
if not len(
COMPAT_ABI
):
591
COMPAT_ABI
=
COMPAT_ABI
[0]
592
log('Compatible device ABI: %s' % (
COMPAT_ABI
))
593
GDBSETUP_INIT = get_build_var_for_abi('NDK_APP_GDBSETUP',
COMPAT_ABI
)
596
TOOLCHAIN_PREFIX = get_build_var_for_abi('TOOLCHAIN_PREFIX',
COMPAT_ABI
)
599
APP_OUT = get_build_var_for_abi('TARGET_OUT',
COMPAT_ABI
)
607
gdbserver_path = os.path.join(PROJECT,'libs',
COMPAT_ABI
,'gdbserver'
[
all
...]
Completed in 9766 milliseconds