当我尝试在 rhel8 主机上编译 vmware Workstation 16 的内核模块时,得到以下信息:
> sudo /usr/bin/vmware-config.pl
*snip*
Your kernel was built with "gcc" version "8.3.1", while you are trying to use
"/bin/gcc" version "8". This configuration is not supported and VMware
Workstation cannot work in such configuration. Please either recompile your
kernel with "/bin/gcc" version "8", or restart /usr/bin/vmware-config.pl with
CC environment variable pointing to the "gcc" version "8.3.1".
然而 /bin/gcc -v 给了我:
> /bin/gcc -v
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/8/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-redhat-linux
Configured with: ../configure --enable-bootstrap --enable-languages=c,c++,fortran,lto --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-shared --enable-threads=posix --enable-checking=release --enable-multilib --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-gcc-major-version-only --with-linker-hash-style=gnu --enable-plugin --enable-initfini-array --with-isl --disable-libmpx --enable-offload-targets=nvptx-none --without-cuda-driver --enable-gnu-indirect-function --enable-cet --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux
Thread model: posix
gcc version 8.3.1 20191121 (Red Hat 8.3.1-5) (GCC)
设置“export CC=/bin/gcc”没有帮助。
如何让 vmware-config.pl 选择正确的 gcc 版本?
答案1
我认为我们无法通过所提供的信息来回答这个问题。我唯一的建议是查看 Perl 脚本的源代码,看看它做了什么来确定您使用的 gcc 版本。由于 gcc -v 显示您正在使用正确的版本,并且显式指向正确的版本仍然会出现相同的错误,因此 Perl 脚本尝试确定版本的方式似乎肯定存在一些问题。
如果没有 Perl 脚本,就很难说更多了。