|
我的LFS使用了gcc-4.4.0, 好多软件编译有问题, 包括celestia, stardict, 今天又卡在mplayer上. Gentoo的ebuild比较保守, 仍采用gcc-4.3.3, 看来有一定道理.
网上看了看, 补丁也很简单:
--- configure (revision 29245)
+++ configure (working copy)
def_liba52='#undef CONFIG_LIBA52'
def_liba52_internal="#undef CONFIG_LIBA52_INTERNAL"
if test "$_liba52_internal" = yes ; then
+ test "$cc_vendor" = gnu && test "$cc_version" = 4.4.0 && CFLAGS=$(echo $CFLAGS|sed "s/ *-O4 */ -O2 /")
_liba52=yes
def_liba52_internal="#define CONFIG_LIBA52_INTERNAL 1"
_res_comment="internal"
手工加一句话就OK.
然后编译通过. |
|