Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
halo
ndk
Commits
f1629762
Commit
f1629762
authored
9 years ago
by
Josh Gao
Browse files
Options
Download
Email Patches
Plain Diff
[ndk-gdb.py] Fix project relative paths.
Change-Id: Ic7fec5ba367fcce939dde585826e274fcbd12d41
parent
b778482a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
ndk-gdb.py
ndk-gdb.py
+2
-0
No files found.
ndk-gdb.py
View file @
f1629762
...
...
@@ -652,9 +652,11 @@ The target device is running API level %d!''' % (API_LEVEL))
COMPAT_ABI
=
COMPAT_ABI
[
0
]
log
(
'Compatible device ABI: %s'
%
(
COMPAT_ABI
))
GDBSETUP_INIT
=
get_build_var_for_abi
(
'NDK_APP_GDBSETUP'
,
COMPAT_ABI
)
GDBSETUP_INIT
=
os
.
path
.
normpath
(
os
.
path
.
join
(
PROJECT
,
GDBSETUP_INIT
))
log
(
'Using gdb setup init: %s'
%
(
GDBSETUP_INIT
))
APP_OUT
=
get_build_var_for_abi
(
'TARGET_OUT'
,
COMPAT_ABI
)
APP_OUT
=
os
.
path
.
normpath
(
os
.
path
.
join
(
PROJECT
,
APP_OUT
))
log
(
'Using app out directory: %s'
%
(
APP_OUT
))
DEBUGGABLE
=
extract_debuggable
(
PROJECT
+
os
.
sep
+
MANIFEST
)
log
(
'Found debuggable flag: %s'
%
(
'true'
if
DEBUGGABLE
==
True
else
'false'
))
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment