On Mon, Jul 17, 2006 at 10:02:35AM -0400, Mike Bonnet wrote: > I assume you're referring to > http://brewweb.devel.redhat.com/brew/taskinfo?taskID=120730 ? You need > to look at the arch-specific subtask (ia64 in this case) to find the > logs: http://brewweb.devel.redhat.com/brew/taskinfo?taskID=120733 > > It looks like a linking problem (in build.log, before all the Java > warnings): > > /usr/lib/gcc/ia64-redhat-linux/4.1.1/crtendS.o: In function `__do_global_ctors_aux': > ../../gcc/config/ia64/crtend.asm:(.text+0x0): multiple definition of `__do_global_ctors_aux' > /usr/lib/gcc/ia64-redhat-linux/4.1.1/crtendS.o:../../gcc/config/ia64/crtend.asm:(.text+0x0): first defined here > collect2: ld returned 1 exit status > make: *** [libdb_cxx-4.3.la] Error 1 Which shows that the libtool hack db4 is using at least needs updating for newer libtool. The above is a broken attempt to build a shared library without -nostdlib and with explicit crt*.o files on the command line (so you in the end are trying to link each of the crt* object files twice). Jakub