在 Mac m1 上安装 OpenMP。 'clang: 错误:不支持的选项 '-fopenmp''运行 setup.py 时
我使用的是 Macbook pro M1。
我有一个正在尝试安装的 python 包,它正在编译 c 文件并具有 setup.py 文件,因为
sources = ['*.c'],
include_dirs=['##Directory Name##'],
extra_compile_args=['-fopenmp'],
extra_link_args=['-lgomp'])
我在网上看到了解决方案,说要调用 gcc-[version] 但如何构建此文件?如果您有任何可供初学者遵循的解决方案,请告诉我。
我不断收到 clang: error: unsupported option '-fopenmp'
谢谢
I am using the Macbook pro M1.
I have a python package that I am trying to install which is compiling c files and has the setup.py file as
sources = ['*.c'],
include_dirs=['##Directory Name##'],
extra_compile_args=['-fopenmp'],
extra_link_args=['-lgomp'])
I have seen solutions online that say to invoke gcc-[version] but how do I build this file? If you have any solutions for a beginner to follow, please let me know.
I keep getting clang: error: unsupported option '-fopenmp'
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的 Mac 上安装了 homebrew,请执行以下操作:
If you have homebrew installed in your mac, then do the following: