|
|
用gcc-4.1.1编译xmms-1.2.10的问题
ir.c:19: error: static declaration of 'keepGoing' follows non-static declaration
ir.h:53: error: previous declaration of 'keepGoing' was here
ir.c:22: error: static declaration of 'irapp_thread' follows non-static declaration
ir.h:52: error: previous declaration of 'irapp_thread' was here
解决办法:找出ir.c文件,把19行和22行的static关键字删除再编译
另外,使用gcc-3.4.3编译同一程序不会报告错误
xmms不能启动的问题
命令行输入xmms,不能启动,显示错误信息:
*** glibc detected *** free(): invalid pointer: 0xb71418a3 ***
Aborted
这是flac-1.1.2的一个bug,需要下载以下补丁:
http://www.linuxfromscratch.org/ ... _plugin_fix-1.patch
然后重新编译flac-1.1.2即可
这个bug是BLFS-6.1没有提到的 |
|