适用于 RHEL/CentOS 7 的 32 位库 GCC

适用于 RHEL/CentOS 7 的 32 位库 GCC
yum groupinstall "Compatibility Libraries"

Loaded plugins: langpacks, product-id, search-disabled-repos, subscription-manager
There is no installed groups file.
Maybe run: yum groups mark convert (see man yum)
Warning: Group compat-libraries does not have any packages to install.
Maybe run: yum groups mark install (see man yum)
No packages in any requested group available to install or update

yum groupinstall "Compatibility Libraries" --setopt=group_package_types=mandatory,default,optional

Loaded plugins: langpacks, product-id, search-disabled-repos, subscription-manager
There is no installed groups file.
Maybe run: yum groups mark convert (see man yum)
Warning: Group compat-libraries does not have any packages to install.
Maybe run: yum groups mark install (see man yum)
No packages in any requested group available to install or update

uname -a
Linux 3.10.0-1127.8.2.el7.x86_64 #1 SMP Thu May 7 19:30:37 EDT 2020 x86_64 x86_64 x86_64 GNU/Linux

gcc --version
gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-39)

尝试安装英特尔并行工作室,它抱怨该产品在 Intel(R) 64 架构系统上运行时需要存在 32 位兼容性库... libstdc++(包括 libstdc++6);如果没有这些库,编译器将无法正常运行。

确保 32 位的正确解决方案是什么一切在已经运行的 RHEL/CentOS 7 系统上可用,所以我不必处理这些废话?

以下做了不是帮助

I have done

subscription-manager repos --enable=rhel-7-server-optional-rpms

yum install compat-libstdc++ 
yum install compat-libstdc++-33
yum install compat-gcc-44
yum install compat-gcc-44-c++
yum install compat-gcc-44-gfortran

答案1

Intel Parallel Studio 需要 32 位库。

yum install libgcc*i686 libstdc++*i686 glibc*i686 libgfortran*i686

相关内容