4

我正在尝试在 Solaris sun4u sparc SunOS 5.10 上从http://ftp.gnu.org/gnu/binutils构建 binutils 2.21.1a。我正在使用 gcc 版本 4.0.2。当我建立这是错误:

cc1: warnings being treated as errors
compress.c: In function 'bfd_compress_section_contents':
compress.c:100: warning: implicit declaration of function 'compressBound'
make[2]: *** [compress.lo] Error 1
make[2]: Leaving directory `/nfs/netapp0/user/home/hart/downloads/binutils-2.21.1/bfd'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/nfs/netapp0/user/home/hart/downloads/binutils-2.21.1/bfd'
*** Error code 2
make: Fatal error: Command failed for target `all'

我将其添加--disable-werror到配置行以尝试绕过它并希望继续构建。不幸的是,这也不起作用,我在链接时遇到了这个新的相关错误:

Undefined                       first referenced
 symbol                             in file
compressBound                       ../bfd/.libs/libbfd.a(compress.o)
ld: fatal: Symbol referencing errors. No output written to size
collect2: ld returned 1 exit status

我搜索了一个现有问题,但没有发现任何相关问题。有任何想法吗?我更喜欢使用这个版本的 binutils,但是如果你知道在这个平台上可以使用 gcc 4.0.2 构建的版本,请告诉我。

4

1 回答 1

6

我终于发现这个问题确实是作为一个BUG提交的。解决方法是添加--without-zlib到配置脚本或在系统上安装最新版本的 zlib。

于 2011-10-26T19:41:44.537 回答