如何更改 GCC 的构建和目标架构?

如何更改 GCC 的构建和目标架构?

我知道我的 Linux 机器是 x86_64,我也想通过 GCC 编译 x86_64。目前...

gcc -v 

节目

Using built-in specs.
**Target: i386-redhat-linux**
Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info   
--enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-  
__cxa_atexit --disable-libunwind-exceptions --enable-libgcj-multifile --enable- 
languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --enable-plugin  
--with-java-home=/usr/lib/jvm/java-1.4.2-gcj-1.4.2.0/jre --with-cpu=generic **--host=i386-redhat-linux**
Thread model: posix
gcc version 4.1.2 20080704 (Red Hat 4.1.2-48)

如何将目标更改为 x86_64 并将 --host 更改为 x86_64?

答案1

事实证明我需要将我的系统升级gcc到 x86_64。我之前运行的是 x86_64,但出于某种原因,我的系统gcc是 i386。我gcc通过在 yum 上搜索将我的系统升级到 64 位,然后尝试更新。我必须删除 i386gcc及其一些依赖项,然后更新才能成功。gcc -v现在显示目标:x86_64-redhat-linux

相关内容