-
Notifications
You must be signed in to change notification settings - Fork 50
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
make is whining about undeclared functions, refuses to build #84
Comments
I fixed this by adding the following flags to lines 580 and 581 of the Makefile: -Wno-error=implicit-function-declaration and -Wno-error=incompatible-function-pointer-types I added the first flag and got past the issue in your screenshot, and subsequently ran into the second error and had to suppress that as well. |
I tried adding these flags, but the Makefile gets overwritten every time. As soon as I try to run the command to build I get the error:
Did you also face this issue, and if so how did you overcome it? |
Just don't use android builder, do it manually, the builder is broken, overwrites everything, doesn't install all of dependencies, throws errors. |
I've spent almost two hours trying to compile this thing and nothing works. I've installed all dependencies according to the long-ignored pull requests. My only conclusion is that sometime since last October an update to make broke this workflow, because ISO C99 compliance now seems to be mandatory and make errors out and refuses to proceed because of calls to undeclared functions stat and mkdir on pc_main.c and no switches will convince it to budge. Scouring the usual suspects, nobody seems to have uploaded the built APK anywhere either. Help?
The text was updated successfully, but these errors were encountered: