-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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
CFLAGS c11 #262
Comments
Not familiar with R make files. Maybe try passing |
Thanks for the feedback, I'm compiling it with |
Should support C99 now - give it a try with latest |
thanks! will try it out |
Ah wait, |
That seems to be fixing it. Due to this change the R package now builds on Windows as well next to Ubuntu. I'll close this. |
I've compiled the code on a Windows CRAN machine (winbuilder) which still complains on a few things, namely
I'm not sure if this is an easy fix or not. |
I've incorporated these fixes and I'm now using version 1.0.4 in the R package. This seems now solved. Thanks! |
Hello,
Many thanks for the code!
I'm writing an R wrapper around this C++ code at https://github.com/bnosac/audio.whisper
I'm now compiling the C code using
-std=c11 -O3
as in https://github.com/bnosac/audio.whisper/blob/master/src/MakevarsBut then I'm getting (e.g. at https://github.com/bnosac/audio.whisper/actions/runs/3671368911/jobs/6206523324)
I'm trying to work around this by compiling with
-O3 -D_POSIX_C_SOURCE=199309L
but that gives me the following.Any suggestions on how to fix this?
The text was updated successfully, but these errors were encountered: