2

当我尝试在我的系统(Fedora)上构建这个库时

Linux localhost.localdomain 2.6.33.8-149.fc13.i686 #1 SMP Tue Aug 17 22:45:56 UTC 2010 i686 i686 i386 GNU/Linux

我得到一长串错误,这是最后几行:

build/makefiles/Makefile.top:542: warning: overriding commands for target `build-Linux-Linux-release-lib-static/src_charset_detect.o'
build/makefiles/Makefile.top:542: warning: ignoring old commands for target `build-Linux-Linux-release-lib-static/src_charset_detect.o'
 COMPILE: src/hubbub.c
cc: error trying to exec '/usr/libexec/gcc/i686-redhat-linux/4.4.4/cc1': execv: Argument list too long
make: *** [build-Linux-Linux-release-lib-static/src_hubbub.o] Error 1

您可以下载生成文件,此错误似乎在此处:

http://www.touspassagers.org/downloadable/Makefile.top

我想我只需要分解 execv 的论点,所以没有那么多。在该文件出现的每个实例中,如何在该文件的上下文中执行此操作?我听说 xargs 是要走的路;但我不知道如何使用它。我对 bash 很陌生。

4

2 回答 2

0

在dreamlax发现环境列表也很重要的基础上,您可以在开始构建过程之前检查环境并删除过长的变量,甚至可以尝试env -i build-command

于 2013-09-24T13:15:18.370 回答
0

将 gcc 升级到至少 4.5.0 后重试

我认为该错误已在该版本中修复。

于 2011-05-06T00:39:03.870 回答