-
Notifications
You must be signed in to change notification settings - Fork 45
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
Failure to build with ndk-23-2-8568313 #113
Comments
I am having the same trouble. I need ndk-bundle to work, but it has troubles with various dependencies
It seems that overwriting the buildInputs for it is the way to go, since I did eliminate the sqlite error that way (I used to have 8 dependencies not satisfied) (ndk-bundle.overrideAttrs (old: {
buildInputs = old.buildInputs ++ [
# this helps
pkgs.sqlite
# these make no difference
pkgs.gdbm
pkgs.libffi
pkgs.openssl
pkgs.readline
];
})) Unfortunately, there might be a version problem since adding packages for the other missing dependencies don't cause the errors to go away. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I put
ndk-23-2-8568313
in the example on the front page and it had lots of errors like:I tried replicating it in the example at this issue: #62 where the not working flake (at the top) now works. But while it's okay with ndk-21, it doesn't work for ndk-23 (The furthest I can get it to is complaining about missing python39)
For background, ndk-23-2-8568313 is required by the GodotEngine build environment
https://docs.godotengine.org/en/stable/contributing/development/compiling/compiling_for_android.html#setting-up-the-buildsystem
sdk.zip
The text was updated successfully, but these errors were encountered: