- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以,我在这里发现了一些其他的 clang 错误,它们似乎有些相似,但是,这些修复不适用于我的情况。
我正在使用 OSX Mavericks,我们正在尝试安装 Ansible。我可以正确安装 pip,但是当我尝试安装 Ansible 时,出现这个 clang 错误。起初我们认为这可能是版本问题,所以在 gcc49 出现同样的错误后我重新安装了 gcc46,但我仍然收到错误。
有人知道如何解决这个问题吗?
我的 pip.log 日志文件中的完整错误报告如下:
cc -fno-strict-aliasing -fno-common -dynamic -arch x86_64 -arch i386 -pipe -fno-common -fno-strict-aliasing -fwrapv -mno-fused-madd -DENABLE_DTRACE -DMACOSX -Wall -Wstrict-prototypes -Wshorten-64-to-32 -fwrapv -Wall -Wstrict-prototypes -DENABLE_DTRACE -arch x86_64 -arch i386 -pipe -std=c99 -O3 -fomit-frame-pointer -Isrc/ -I/System/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c src/MD2.c -o build/temp.macosx-10.9-intel-2.7/src/MD2.o
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
----------------------------------------
Cleaning up...
Removing temporary dir /private/tmp/pip_build_root...
Command /usr/bin/python -c "import setuptools, tokenize;__file__='/private/tmp/pip_build_root/pycrypto/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-_7evji-record/install-record.txt --single-version-externally-managed --compile failed with error code 1 in /private/tmp/pip_build_root/pycrypto
Exception information:
Traceback (most recent call last):
File "/Library/Python/2.7/site-packages/pip-1.5.4-py2.7.egg/pip/basecommand.py", line 122, in main
status = self.run(options, args)
File "/Library/Python/2.7/site-packages/pip-1.5.4-py2.7.egg/pip/commands/install.py", line 283, in run
requirement_set.install(install_options, global_options, root=options.root_path)
File "/Library/Python/2.7/site-packages/pip-1.5.4-py2.7.egg/pip/req.py", line 1435, in install
requirement.install(install_options, global_options, *args, **kwargs)
File "/Library/Python/2.7/site-packages/pip-1.5.4-py2.7.egg/pip/req.py", line 706, in install
cwd=self.source_dir, filter_stdout=self._filter_install, show_stdout=False)
File "/Library/Python/2.7/site-packages/pip-1.5.4-py2.7.egg/pip/util.py", line 697, in call_subprocess
% (command_desc, proc.returncode, cwd))
InstallationError: Command /usr/bin/python -c "import setuptools, tokenize;__file__='/private/tmp/pip_build_root/pycrypto/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-_7evji-record/install-record.txt --single-version-externally-managed --compile failed with error code 1 in /private/tmp/pip_build_root/pycrypto
感谢任何可以帮助我的人。我们花了过去几个小时尝试安装它,但它开始变得相当令人沮丧。
最佳答案
我最近在尝试安装不同的软件包时遇到了同样的问题。
在使用 pip 安装之前设置以下环境变量解决了我的问题:
export CFLAGS=-Qunused-arguments
export CPPFLAGS=-Qunused-arguments
如果您通过 sudo 安装,请不要忘记使用“sudo -E”,以便您的环境变量通过 sudo 传播。
如果这对您不起作用,请尝试以下命令:
ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future pip install ansible
或者,作为另一个潜在的解决方案,您可以尝试使用 Homebrew 重新编译新版本的 python。
参见this question了解更多信息。
希望这有帮助!
关于gcc - Ansible安装-clang : error: unknown argument: '-mno-fused-madd' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22390655/
阅读官方英特尔 C++ 内部引用, SSE 2 有以下命令 __m128i _mm_madd_epi16(__m128i a, __m128i b) 将 a 中的 8 个有符号 16 位整数乘以 b
每当我编译 Cython 代码(使用 pyximport )并且经常从源代码(使用 pip )安装包时,我得到 clang: warning: argument unused during compi
所以,我在这里发现了一些其他的 clang 错误,它们似乎有些相似,但是,这些修复不适用于我的情况。 我正在使用 OSX Mavericks,我们正在尝试安装 Ansible。我可以正确安装 pip,
尝试在 Mavericks 10.9 上通过 pip 安装 psycopg2 时出现以下错误: clang: error: unknown argument: '-mno-fused-madd' [-
我尝试在 Mavericks 操作系统中安装 Scrapy 时遇到以下错误。 我安装了命令行工具和 X11 我真的不知道发生了什么,我在浏览 Web 时也没有发现同样的错误。我认为这可能与 Xcode
我使用的是 OSX。我按照Salt的官方指南here安装Salt我遇到了一个问题。运行“sudo pip install salt”会出现以下错误。 clang: error: unknown arg
我是一名优秀的程序员,十分优秀!