|
|
发表于 2005-11-21 08:27:59
|
显示全部楼层
Before you begin to compile, suggest you to verify the version of gcc in your system:
$whereis gcc
If you have several versions, then you should check the correct version to be used, e.g.
/usr/bin/gcc -v
/opt/bin/gcc -v
...
Assume gcc-3.3 is located at /opt/bin, then you may use:
CC=/opt/bin/gcc ./configure ...... |
|