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 Parallel Studio 설치를 시도했는데 불만이 표시되었습니다.이 제품에는 32비트 호환성 라이브러리가 필요합니다. Intel(R) 64 아키텍처 시스템에서 실행하는 경우 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

관련 정보