尝试在我的linux机器上的python 3.4.3上安装cffi-1.7.0源代码。得到以下错误。
$ python setup.py install
cc1:错误:无法识别的命令行选项" -Wno-unused-result" cc1:错误:无法识别的命令行选项" -Wno-unused-result"
No working compiler found, or bogus compiler options
passed to the compiler from Python's distutils module.
See the error messages above.
(If they are about -mno-fused-madd and you are on OS/X 10.8,
see http://stackoverflow.com/questions/22313407/ .)
任何人都可以帮我解决这个问题吗?
答案 0 :(得分:0)
通过设置以下选项解决了该问题。
setenv CFLAGS = -Qunused-arguments
setenv CPPFLAGS -Qunused-arguments
谢谢大家的帮助!