Whenever I compile Cython code (using pyximport
) and frequently when I install packages from source (with pip
) I get
clang: warning: argument unused during compilation: '-mno-fused-madd'
What is this warning and what can I do to prevent it? I suspect I may not be able to prevent when pip
triggers it, but is thre at least some way to configure pyximport
to avoid it?
OS X 10.9, Python 2.7.5, Xcode clang 500.2.79
The answer before didn't work for me, but it worked this to tell clang to ignore these error messages:
export CFLAGS=-Qunused-arguments
export CPPFLAGS=-Qunused-arguments
Solution found in clang error: unknown argument: '-mno-fused-madd' (python package installation failure)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With