public inbox for binutils@sourceware.org
 help / color / mirror / Atom feed
* [SGI-IRIX 6.5] ld (current CVS) refuses to build
@ 1999-07-02  6:17 Gilles Zunino
  1999-07-02  7:19 ` Ian Lance Taylor
  1999-07-02  7:30 ` Mark Mitchell
  0 siblings, 2 replies; 4+ messages in thread
From: Gilles Zunino @ 1999-07-02  6:17 UTC (permalink / raw)
  To: binutils

 	Hi !

	When building ld for sgi-irix-6.5 I get the following 
	error at link time :

[build process ok until here]

/bin/sh ./libtool --mode=link gcc  -g -O2  -o ld-new  ldgram.o ldlex.o
lexsup.o ldlang.o mri.o ldctor.o ldmain.o ldwrite.o ldexp.o ldemul.o
ldver.o ldmisc.o ldfile.o ldcref.o eelf32bmipn32.o eelf32bsmip.o 
../bfd/libbfd.la ../libiberty/libiberty.a ./../intl/libintl.a 

gcc -g -O2 -o ld-new ldgram.o ldlex.o lexsup.o ldlang.o mri.o ldctor.o
ldmain.o ldwrite.o ldexp.o ldemul.o ldver.o ldmisc.o ldfile.o ldcref.o
eelf32bmipn32.o eelf32bsmip.o ../bfd/.libs/libbfd.a
../libiberty/libiberty.a ./../intl/libintl.a
gcc: eelf32bmipn32.o: No such file or directory

	Looks like "eelf32bmipn32.c" has not been generated by
	${GENSCRIPTS}.
_________________________________________________________________
Gilles Zunino - (Gilles.Zunino@hei.fupl.asso.fr)   (A 506)  7636

HEI, 13 rue de Toul, 59 046 LILLE CEDEX FRANCE
Phone : (+33) 3 28.38.48.58  Fax : (+33) 3 28.38.48.04

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [SGI-IRIX 6.5] ld (current CVS) refuses to build
  1999-07-02  6:17 [SGI-IRIX 6.5] ld (current CVS) refuses to build Gilles Zunino
@ 1999-07-02  7:19 ` Ian Lance Taylor
  1999-07-02  7:40   ` Mark Mitchell
  1999-07-02  7:30 ` Mark Mitchell
  1 sibling, 1 reply; 4+ messages in thread
From: Ian Lance Taylor @ 1999-07-02  7:19 UTC (permalink / raw)
  To: Gilles.Zunino; +Cc: binutils

   Date: Fri, 02 Jul 1999 15:15:03 +0200
   From: Gilles Zunino <Gilles.Zunino@hei.fupl.asso.fr>

	   Hi !

	   When building ld for sgi-irix-6.5 I get the following 
	   error at link time :

   [build process ok until here]

   /bin/sh ./libtool --mode=link gcc  -g -O2  -o ld-new  ldgram.o ldlex.o
   lexsup.o ldlang.o mri.o ldctor.o ldmain.o ldwrite.o ldexp.o ldemul.o
   ldver.o ldmisc.o ldfile.o ldcref.o eelf32bmipn32.o eelf32bsmip.o 
   ../bfd/libbfd.la ../libiberty/libiberty.a ./../intl/libintl.a 

   gcc -g -O2 -o ld-new ldgram.o ldlex.o lexsup.o ldlang.o mri.o ldctor.o
   ldmain.o ldwrite.o ldexp.o ldemul.o ldver.o ldmisc.o ldfile.o ldcref.o
   eelf32bmipn32.o eelf32bsmip.o ../bfd/.libs/libbfd.a
   ../libiberty/libiberty.a ./../intl/libintl.a
   gcc: eelf32bmipn32.o: No such file or directory

	   Looks like "eelf32bmipn32.c" has not been generated by
	   ${GENSCRIPTS}.

Looks like Mark forgot to check in the regenerated ld/Makefile.in.  I
just checked it in, which should fix this problem.

Ian

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [SGI-IRIX 6.5] ld (current CVS) refuses to build
  1999-07-02  6:17 [SGI-IRIX 6.5] ld (current CVS) refuses to build Gilles Zunino
  1999-07-02  7:19 ` Ian Lance Taylor
@ 1999-07-02  7:30 ` Mark Mitchell
  1 sibling, 0 replies; 4+ messages in thread
From: Mark Mitchell @ 1999-07-02  7:30 UTC (permalink / raw)
  To: Gilles.Zunino; +Cc: binutils

>>>>> "Gilles" == Gilles Zunino <Gilles.Zunino@hei.fupl.asso.fr> writes:
    Gilles> 	Looks like "eelf32bmipn32.c" has not been generated by
    Gilles> ${GENSCRIPTS}.

That's my fault.  I forgot to update the generated files in the `ld'
directory; in particular to check in an updated Makefile.in.

I can't do that right now (technical reason), but I will do it within
the next few hours, if nobody beats me to it.

--
Mark Mitchell                   mark@codesourcery.com
CodeSourcery, LLC               http://www.codesourcery.com

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [SGI-IRIX 6.5] ld (current CVS) refuses to build
  1999-07-02  7:19 ` Ian Lance Taylor
@ 1999-07-02  7:40   ` Mark Mitchell
  0 siblings, 0 replies; 4+ messages in thread
From: Mark Mitchell @ 1999-07-02  7:40 UTC (permalink / raw)
  To: ian; +Cc: Gilles.Zunino, binutils

>>>>> "Ian" == Ian Lance Taylor <ian@zembu.com> writes:

    Ian> Looks like Mark forgot to check in the regenerated
    Ian> ld/Makefile.in.  I just checked it in, which should fix this
    Ian> problem.

Thanks!

--
Mark Mitchell                   mark@codesourcery.com
CodeSourcery, LLC               http://www.codesourcery.com

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~1999-07-02  7:40 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1999-07-02  6:17 [SGI-IRIX 6.5] ld (current CVS) refuses to build Gilles Zunino
1999-07-02  7:19 ` Ian Lance Taylor
1999-07-02  7:40   ` Mark Mitchell
1999-07-02  7:30 ` Mark Mitchell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).