This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: Build error
- From: Jeff Sturm <jsturm at one-point dot com>
- To: Pedro Manuel Augusto <augusto at uma dot pt>
- Cc: gcc at gnu dot org
- Date: Fri, 3 Jan 2003 13:12:59 -0500 (EST)
- Subject: Re: Build error
On Fri, 3 Jan 2003, Pedro Manuel Augusto wrote:
> /usr/local/sparc-sun-solaris2.7/bin/ld:libgcc/./libgcc.map: file format
> not recognized; treating as linker script
You've configured for Sun btools, but gcc is finding and using binutils.
Either get rid of binutils, or configure gcc for it:
$srcdir/configure ... --with-as=$prefix/bin/as --with-ld=$prefix/bin/ld
--with-gnu-as --with-gnu-ld
Jeff