Reputation: 14791
I try to install on Fabric on virtualenv on mac os x Maverick with command pip install fabric
I got an error when my mac builds pycrypto:
clang: error: unknown argument: '-mno-fused-madd' [-Wunused-command-line-argument-hard-error-in-future]
clang: note: this will be a hard error (cannot be downgraded to a warning) in the future
error: command 'cc' failed with exit status 1
complete log: http://pastebin.com/raw.php?i=NvzGcN0a
pip install fabric
on my system works, but when I activate my virtualenv and try to install Fabric on it, it does not.
Any idea where my problem is ?
Upvotes: 0
Views: 1425
Reputation: 164
From mysql-python on mac os 10.9.1
Fixed it by running:
export CFLAGS=-Qunused-arguments export CPPFLAGS=-Qunused-arguments
before `pip install...```
Props to Romeo Mihalcea for answering his own question.
Upvotes: 3