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
513
COMPAT_ABI
=none
526
COMPAT_ABI
=$APP_ABI
531
if [ "$
COMPAT_ABI
" = none ] ; then
537
log "Compatible device ABI: $
COMPAT_ABI
"
540
GDBSETUP_INIT=`get_build_var_for_abi NDK_APP_GDBSETUP $
COMPAT_ABI
`
543
TOOLCHAIN_PREFIX=`get_build_var_for_abi TOOLCHAIN_PREFIX $
COMPAT_ABI
`
546
APP_OUT=`get_build_var_for_abi TARGET_OUT $
COMPAT_ABI
`
556
if [ -f $PROJECT/libs/$
COMPAT_ABI
/gdbserver ] ; then
557
log "Found gdbserver under libs/$
COMPAT_ABI
, assuming app was built with NDK_DEBUG=1"
572
if [ ! -f $PROJECT/libs/$
COMPAT_ABI
/gdbserver ] ; the
[
all
...]
ndk-gdb.py
514
COMPAT_ABI
= []
521
COMPAT_ABI
= [ABI for ABI in CPU_ABIS if ABI in APP_ABIS]
523
if not len(
COMPAT_ABI
):
527
COMPAT_ABI
=
COMPAT_ABI
[0]
528
log('Compatible device ABI: %s' % (
COMPAT_ABI
))
529
GDBSETUP_INIT = get_build_var_for_abi('NDK_APP_GDBSETUP',
COMPAT_ABI
)
532
TOOLCHAIN_PREFIX = get_build_var_for_abi('TOOLCHAIN_PREFIX',
COMPAT_ABI
)
535
APP_OUT = get_build_var_for_abi('TARGET_OUT',
COMPAT_ABI
)
543
gdbserver_path = os.path.join(PROJECT,'libs',
COMPAT_ABI
,'gdbserver'
[
all
...]
Completed in 1124 milliseconds