psycopg2 安装过程中遇到错误
尝试在 Mavericks 10.9 上使用 pip 安装 psycopg2 会导致以下错误:
clang: error: unknown argument: '-mno-fused-madd' [-Wunused-command-line-argument-hard-error-in-future]
解决错误
要解决此错误,请在编译前通过设置环境变量来抑制“mno-fused-madd”警告:
export CFLAGS=-Qunused-arguments export CPPFLAGS=-Qunused-arguments
随后,运行安装命令应该继续成功。
附加注意事项
以上是如何修复 macOS 上 psycopg2 安装期间的'-mno-fused-madd”错误?的详细内容。更多信息请关注PHP中文网其他相关文章!