C 程序的 CMake 和 BLAS

发布于 2024-08-29 05:21:34 字数 343 浏览 8 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

羁绊已千年 2024-09-05 05:21:34

CMake 文档 是你的朋友,什么您需要的是enable_language

The CMake Documentation is your friend, what you need is enable_language.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文