Centos openmp 与 gcc 4.1.2

发布于 2024-10-10 15:12:49 字数 147 浏览 1 评论 0原文

我无法判断 openmp 是否安装在我刚刚使用开发人员工具安装的新安装的 centos 中。

我尝试运行 ldconfig -p | grep openmp,我没有看到它列出。

那个版本的 gcc 可以用于 centos 吗?

谢谢

I cant tell if openmp is installed in this fresh install of centos I just put on with the developer tools.

I tried to run ldconfig -p | grep openmp and I dont see it listed.

Is it available for centos with that version of gcc?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

踏月而来 2024-10-17 15:12:49
/sbin/ldconfig -p | grep gomp

库被调用libgomp

/sbin/ldconfig -p | grep gomp

library is call libgomp

倦话 2024-10-17 15:12:49

尝试:

$ ldconfig -p | grep -i "gomp"
libgomp.so.1 (libc6,x86-64) => /usr/lib64/libgomp.so.1

基本上,它被称为 gomp...GCC 的 OpenMP。

另一种方法是编译一个 hello world openmp 程序;如果不起作用,则表示未安装。

Try:

$ ldconfig -p | grep -i "gomp"
libgomp.so.1 (libc6,x86-64) => /usr/lib64/libgomp.so.1

Basically, it's called gomp... GCC's OpenMP.

The alternative is to compile a hello world openmp program; if it doesn't work, it isn't installed.

别靠近我心 2024-10-17 15:12:49

在 Red Hat 发行版上以这种方式搜索“yum search gomp”。要找出哪些组,请使用“yum grouplist | less”。这对输出进行分页,以便您可以看到完整的列表。您将注意到哪些组已安装且可用。当然,您始终可以使用“yum help”。

Search "yum search gomp" this way on a Red Hat distro. To find out what the groups are use "yum grouplist | less". This pages the output so you can see the complete list. You will notice which groups are installed and available. Of course you can always use "yum help".

云朵有点甜 2024-10-17 15:12:49

不熟悉 CentOS 或 yum,但尝试一下:

yum list installed | grep "penmp"

祝你好运!

Not familiar with CentOS or yum, but take a stab with this:

yum list installed | grep "penmp"

Good luck!

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