当前位置: 技术问答>linux和unix
编译安装GCC问题
来源: 互联网 发布时间:2017-01-02
本文导语: 我在初始化时,../gcc-4.1.2/configure --prefix=/usr/local/gcc-4.1.2 --enable-threads=posix --disable-checking --enable--long-long --host=i386-redhat-linux--with-system-zlib --enable-languages=c,c++,java --host=i386-redhat-linux--with-system-zlib 这个找不到,我的...
我在初始化时,../gcc-4.1.2/configure --prefix=/usr/local/gcc-4.1.2 --enable-threads=posix --disable-checking --enable--long-long --host=i386-redhat-linux--with-system-zlib --enable-languages=c,c++,java
--host=i386-redhat-linux--with-system-zlib 这个找不到,我的系统是64位,不知道这个值怎么设置。
--host=i386-redhat-linux--with-system-zlib 这个找不到,我的系统是64位,不知道这个值怎么设置。
|
./configure --help 看看有没有.
如果没有这个选择,就不选了,
不同的版本可能configure不同.
如果没有这个选择,就不选了,
不同的版本可能configure不同.
|
你想交叉编译?
i386指定的是32位的
i386指定的是32位的
|
看系统自带的gcc -v照抄即可
x86_64-redhat-linux好像是这个,你却好确认一下
|
明显写在一起的
--host=i386-redhat-linux--with-system-zlib
改为
--host=i386-redhat-linux --with-system-zlib
64位就写为
--host=x86_64-redhat-linux --with-system-zlib
--host=i386-redhat-linux--with-system-zlib
改为
--host=i386-redhat-linux --with-system-zlib
64位就写为
--host=x86_64-redhat-linux --with-system-zlib