Run these two lines in your shell before creating:
export CFLAGS=-Qunused-arguments export CPPFLAGS=-Qunused-arguments
This export tells the compiler to ignore unused arguments, rather than complain about them.
Python seems to compile modules using the parameters it was built with, except that one of these parameters no longer works in mavericks:
the clang 3.4 Apple sends errors by default to unknown flags, but CPython builds the modules using the same set of flags with which it was originally compiled.
(from: https://stackoverflow.com )
A lot of people work in this:
- Ansible Installation -clang: error: unknown argument: '-mno-fused-madd'
- Unable to install python mysql library on Mac Mavericks
- clang error: unknown argument: '-mno-fused-madd' (python package installation error)
Seth Mar 27 '14 at 19:57 2014-03-27 19:57
source share