This repository was archived by the owner on Dec 21, 2022. It is now read-only.

Description
Getting the following error which is the same as the one in #73
clang: error: unknown argument: '-mno-fused-madd'
error: command 'cc' failed with exit status 1
However the workaround in #73 (comment) did not work.
What I ended up doing was:
sh-3.2# export CFLAGS=-Qunused-arguments
sh-3.2# export CPPFLAGS=-Qunused-arguments
sh-3.2# ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future pip install pycrypto
Just thought I'd put it here for posterity. We should probably put this in the documentation.