-
Notifications
You must be signed in to change notification settings - Fork 263
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
[BUG] LLDB shipped with NDK isn't able to find python 3.9 library #1566
Comments
I overcame this issue via appending python library to search path. export DYLD_LIBRARY_PATH="/Users//Library/Android/sdk/ndk//toolchains/llvm/prebuilt/darwin-x86_64/python3/lib" Then it failed with another message: |
The @pirama-arumuga-nainar, is the script something we need, or just a workaround while we wait for someone to fix the |
We also use the script to set I also don't see a build option to set just |
I haven't tested ndk-gdb, but I suspect it's broken. The python 3.9 dynamic library isn't in the toolchain's lib64 directory, but is instead in its python3/lib64 directory. On Linux and Darwin, there isn't an rpath pointing at the python3 directory.
macOS:
Linux:
Windows:
A dialog appears: The code execution cannot proceed because python39.dll was not found.
The text was updated successfully, but these errors were encountered: