From owner-freebsd-current@FreeBSD.ORG Fri Jul 30 12:25:20 2004 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8987016A4CF for ; Fri, 30 Jul 2004 12:25:20 +0000 (GMT) Received: from liberty.onthenet.com.au (liberty.OntheNet.com.au [203.22.124.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id D448B43D66 for ; Fri, 30 Jul 2004 12:25:19 +0000 (GMT) (envelope-from grehan@freebsd.org) Received: from freebsd.org (CPE-25-220.dsl.onthenet.net [203.144.25.220]) i6UCP3nP083333; Fri, 30 Jul 2004 22:25:04 +1000 (EST) (envelope-from grehan@freebsd.org) Message-ID: <410A3FB2.908@freebsd.org> Date: Fri, 30 Jul 2004 22:31:46 +1000 From: Peter Grehan User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3.1) Gecko/20030524 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Danny Braniss Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: current@freebsd.org Subject: re: problems compiling latest -current X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jul 2004 12:25:20 -0000 > Since noone is complaining, then it might be that I cross >compile - compiling >under stable (4.10) for current, this worked fine till now. I get this too, using 5.1-RELEASE. The fix was: RCS file: /home/ncvs/src/gnu/usr.bin/cc/cc_int/Makefile,v retrieving revision 1.41 diff -u -r1.41 Makefile --- Makefile 28 Jul 2004 05:27:20 -0000 1.41 +++ Makefile 29 Jul 2004 10:24:33 -0000 @@ -9,7 +9,7 @@ # Files from libiberty. SRCS= choose-temp.c concat.c cp-demangle.c cp-demint.c cplus-dem.c \ - dyn-string.c errors.c fibheap.c getpwd.c getruntime.c hashtab.c \ + dyn-string.c fibheap.c getpwd.c getruntime.c hashtab.c \ hex.c lbasename.c make-temp-file.c md5.c obstack.c partition.c \ pexecute.c physmem.c splay-tree.c xexit.c xmalloc.c xmemdup.c \ xstrdup.c xstrerror.c xexit.c The routines in errors.c are contained in diagnostic.c, so I couldn't really see why they were needed, and I guess binutils < 2.15 isn't happy with having duplicate routines in an archive. later, Peter.