-
Notifications
You must be signed in to change notification settings - Fork 859
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
fix nds build for libnds 2 #8489
Conversation
Can one of the admins verify this patch? |
Hi @lesleyrs Thanks for your interest in wolfSSL. Could you tell us a bit about your project? You mentioned:
Did you also try with |
yea that was the issue for wii it turns out, I copied the example command that included --enable-cryptonly which made --enable-opensslextra silently not do what I want but opensslall gave incompatible message. However trying to build without cryptonly fails so I'm assuming it was never fully ported but w/e. I'm not using wolfssl due to not having access to openssl funcs on nds/wii (nds does build correctly with --enable-opensslextra but gives Just made this PR to update NDS build command for other use cases. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great, thanks!
sure go ahead, I'll close this |
Description
libnds got a v2 update recently https://devkitpro.org/viewtopic.php?f=13&t=9662#p18269 and it broke the build due to this: devkitPro/devkitarm-rules@6f96e76
Checklist
Edit: nvm, even on wii the --enable-opensslextra doesn't seem give me the funcs I want regardless.
BN_CTX_new();
is always undefined and not in the wolfssl lib...