C 程序的 CMake 和 BLAS
我正在尝试使用 CMake 构建依赖于 blas 的程序,我正在使用以下命令检测 blas:
include (${CMAKE_ROOT}/Modules/FindBLAS.cmake)
问题是,FindBLAS 需要 fortran 编译器并抱怨
-- Looking for BLAS... - NOT found (Fortran not enabled)
As blas 已安装在我的计算机上(ATLAS Blas),并且 gfortran 是还安装了,如何启用 Fortran,或者是否有解决方法来查找 C 的 blas 库?
I'm trying to use CMake to build a program relying on blas, I'm detecting blas using :
include (${CMAKE_ROOT}/Modules/FindBLAS.cmake)
The problem is, FindBLAS require a fortran compiler and complain with
-- Looking for BLAS... - NOT found (Fortran not enabled)
As blas is already installed on my machine (ATLAS Blas), and gfortran is also installed, how can I enable Fortran, or is there a workaround to find the blas library for C?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
CMake 文档 是你的朋友,什么您需要的是
enable_language
。The CMake Documentation is your friend, what you need is
enable_language
.