分类: LINUX
2008-05-24 08:00:50
checking for APR-util... yes
adding "-L/usr/lib" to LDFLAGS
checking for i686-pc-linux-gnu-gcc... i486-pc-linux-gnu-gcc
checking for C compiler default output file name... configure: error: C compiler cannot create executables See `config.log' for more details. |
我自己的gcc配置如下:
senwei@localhost ~ $ gcc-config -L
/usr/lib/gcc/i686-pc-linux-gnu/4.1.1 senwei@localhost ~ $ gcc-config -l [1] i686-pc-linux-gnu-4.1.1 * [2] i686-pc-linux-gnu-4.1.2 在/etc/make.conf下的配置: CFLAGS="-O2 -mtune=i686 -pipe" CHOST="i686-pc-linux-gnu" |
果然直接emerge -av apr
然后:
sudo apr-config --cc 再接着
sudo apr-1-config --cc 就会自己选择新的gcc了。 |