-
Notifications
You must be signed in to change notification settings - Fork 90
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
Remix fails to install on Linux? #40
Comments
I got this compiling myself. Probably not in a way it should be done :). I commented some lines that errored on compiling (above). See my commit at PanMan@18b1f95 |
This error still has not been resolved. I am getting the same errors as @PanManAms. Using Ubuntu 14.10, python 2.7, pip 6, numpy 1.9.2. My solution to this problem is to override the possibility of having a default gcc flag of "-Werror=format-security". For the affected setup modules we just add the compiler argument: "-Wno-error=format-security" and the setup script runs fine. "-Werror=format-security" throws an error when PyErr_Format is called with a (potentially) unsafe argument like error.what() in the log that was posted. See pull request (#43). Hope this helps. |
I'm also having this problem. Ideally, it'd be worth making this compile with -Werror=format-security, but otherwise, leaving them as warnings will at least allow compilation to proceed. |
The simplest way to make this safe, incidentally, is to add another parameter "%s" before the message. |
I have been trying for a bit now to install remix on linux. However, I get lots of warnings, then some errors, and then it install fails.
This is a pretty clean ubuntu install.
Anything I'm doing wrong?
Output:
The text was updated successfully, but these errors were encountered: