-
Notifications
You must be signed in to change notification settings - Fork 27
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
Compilation fails with default compiler flags on Ubuntu 13.10 (at least) #10
Comments
I'm also having this problem on Ubuntu 14.04. I just want to add a small fix to your command (if anyone is wondering why it doesn't work, me did also):
|
ra_soundinfo.h:11:14: warning: ‘ra_soundinfo_free’ declared ‘static’ but never defined [-Wunused-function] fedora |
On Ubuntu 13.10 (and possibly other systems with the default compiler flag
-Werror=format-security
) the gem native extension will fail to build. You can get around this by installing withgem install ruby-audio --with-cflags=-Wno-error=format-security
but I suppose the C-extension should be updated to not cause a security error (or at least a note added somewhere, I'm not a C expert so not sure what really should be done to remedy).The text was updated successfully, but these errors were encountered: