-
Notifications
You must be signed in to change notification settings - Fork 257
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ndk-gdb.py fails #3
Comments
The next error I encounter is:
I can't find any directories named "host-tools" in the NDK tree, so I think this is another bug. |
Oops, ndk-gdb.py wasn't updated for some paths moving around. I believe this patch should fix things:
|
Sorry, this as well:
|
👍 Thanks, getting further with those patches. |
Next issue is:
Relevant code is:
It looks like this error is due to the fact that NDK_PATH is a relative path, and |
Since the thing that caused this issue was the move from the package root into |
Fixed a couple of these bugs, here's are the current differences between master and the r11 release:
|
I was experiencing the same issues as @jfirebaugh and have been resolved with the patch above when applied to a fresh download of the ndk. (OS X 64bit) |
Fixed in r11b. |
These weren't updated for the directory reshuffling a while back. Bug: #3 Change-Id: Ifea9be5d910a1ea2d974eb67f8a079f227d03218
Bug: #3 Change-Id: If10d278c4d4fbf97735227c520e09ef0036741be
Bug: #3 Change-Id: I23ec52b8612fb4374ea192b93935329f59c36d16
Output:
The relevant code is:
ndk-gdb.py
is atprebuilt/darwin-x86_64/bin/ndk-gdb.py
, so this adds$NDK_PATH/prebuilt/darwin-x86_64/bin/../../python-packages
, i.e.$NDK_PATH/prebuilt/python-packages
. The correct path seems to be$NDK_PATH/python-packages
. If I change'../..'
to'../../..'
, it gets further (but still fails).The text was updated successfully, but these errors were encountered: