-
Notifications
You must be signed in to change notification settings - Fork 16
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
share/zoneinfo: use gcc #5
Comments
I'm working on a commit to add a At least it will make it easy to do: $ make HOST_CC=some_specific_compiler_name for any OS that needs it, while not affecting |
Great, this was just a stop-gap measure to get it build in my series of patches to get it working on my FreeBSD. gcc 11 seems to be a bit too new to compile this, not to mention clang 16 I have now in -CURRENT. |
I am a bit confused about how |
The commit d853304 implements and enables the ${HOST_CC} make variable throughout the build. |
When building on FreeBSD 14, "cc" is clang 16. This makes the build fail like this:
quick fix is this:
Instead, I could also add
-Wno-deprecated-non-prototype
but to CFLAGS, but not all compilers might know this.The text was updated successfully, but these errors were encountered: