public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
* egcs-971114 fails on alpha-dec-osf4.0
@ 1997-11-14 15:03 Weiwen Liu
  1997-11-14 16:47 ` Jeffrey A Law
  0 siblings, 1 reply; 8+ messages in thread
From: Weiwen Liu @ 1997-11-14 15:03 UTC (permalink / raw)
  To: egcs

Hi, 

egcs-971114 fails to make stage2 compilor with tons of error messages
similar to the following:

cccp.o: Error: symbol $216 has a GPREL32 relocation and is unresolved.
cccp.o: Error: symbol $220 has a GPREL32 relocation and is unresolved.
cccp.o: Error: symbol $220 has a GPREL32 relocation and is unresolved.
cccp.o: Error: symbol $220 has a GPREL32 relocation and is unresolved.
cccp.o: Error: symbol $220 has a GPREL32 relocation and is unresolved.
cccp.o: Error: symbol $220 has a GPREL32 relocation and is unresolved.
cccp.o: Error: symbol $220 has a GPREL32 relocation and is unresolved.
cccp.o: Error: symbol $220 has a GPREL32 relocation and is unresolved.
cccp.o: Error: symbol $220 has a GPREL32 relocation and is unresolved.
cccp.o: Error: symbol $220 has a GPREL32 relocation and is unresolved.

After replacing config/alpha/alpha.* with the ones from egcs-971104,
building of egcs succeeds.

I configure egcs with --enable-haifa
Weiwen


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

* Re: egcs-971114 fails on alpha-dec-osf4.0
  1997-11-14 15:03 egcs-971114 fails on alpha-dec-osf4.0 Weiwen Liu
@ 1997-11-14 16:47 ` Jeffrey A Law
  1997-11-14 17:44   ` Richard Henderson
  0 siblings, 1 reply; 8+ messages in thread
From: Jeffrey A Law @ 1997-11-14 16:47 UTC (permalink / raw)
  To: Weiwen Liu; +Cc: rth, egcs

  In message < Pine.OSF.3.96.971114175448.1936A-100000@ylws39.physics.yale.edu >you write:
  > Hi, 
  > 
  > egcs-971114 fails to make stage2 compilor with tons of error messages
  > similar to the following:
  > 
  > cccp.o: Error: symbol $216 has a GPREL32 relocation and is unresolved.
  > cccp.o: Error: symbol $220 has a GPREL32 relocation and is unresolved.
Please work with rth to get these problems solved.

We've got to get the alpha port stabilitized, so I think we fix this
bug, then freeze it except for absolutely critical bugfixes.  We can't
keep taking one step forward and two backward.

jeff

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

* Re: egcs-971114 fails on alpha-dec-osf4.0
  1997-11-14 16:47 ` Jeffrey A Law
@ 1997-11-14 17:44   ` Richard Henderson
  1997-11-20  7:56     ` Klaus Kaempf
  0 siblings, 1 reply; 8+ messages in thread
From: Richard Henderson @ 1997-11-14 17:44 UTC (permalink / raw)
  To: law; +Cc: Weiwen Liu, rth, egcs

On Fri, Nov 14, 1997 at 05:49:33PM -0700, Jeffrey A Law wrote:
>   > cccp.o: Error: symbol $220 has a GPREL32 relocation and is unresolved.
> Please work with rth to get these problems solved.

Sigh, another stupid mistake.  I must have bootstrapped from
the wrong tree after I made this change.

Sorry about that.


r~



Fri Nov 14 17:27:52 1997  Richard Henderson  <rth@cygnus.com>

	* alpha.h (ASM_OUTPUT_ADDR_DIFF_ELT): Add an L for the local label
	to correspond with the change to ASM_GENERATE_INTERNAL_LABEL.

Index: alpha.h
===================================================================
RCS file: /cvs/cvsfiles/egcs/gcc/config/alpha/alpha.h,v
retrieving revision 1.8.2.1
diff -u -p -d -r1.8.2.1 alpha.h
--- alpha.h	1997/11/14 14:42:26	1.8.2.1
+++ alpha.h	1997/11/15 01:25:43
@@ -1981,8 +1981,8 @@ literal_section ()						\
 /* This is how to output an element of a case-vector that is relative.  */
 
 #define ASM_OUTPUT_ADDR_DIFF_ELT(FILE, VALUE, REL) \
-  fprintf (FILE, "\t.%s $%d\n", TARGET_WINDOWS_NT ? "long" : "gprel32", \
-	   (VALUE) + 32)
+  fprintf (FILE, "\t.%s $L%d\n", TARGET_WINDOWS_NT ? "long" : "gprel32", \
+	   (VALUE))
 
 /* This is how to output an assembler line
    that says to advance the location counter

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

* Re: egcs-971114 fails on alpha-dec-osf4.0
  1997-11-14 17:44   ` Richard Henderson
@ 1997-11-20  7:56     ` Klaus Kaempf
  1997-11-20 15:37       ` Jeffrey A Law
  0 siblings, 1 reply; 8+ messages in thread
From: Klaus Kaempf @ 1997-11-20  7:56 UTC (permalink / raw)
  To: rth; +Cc: egcs, law

A similar change as Richard posted last week is needed for VMS:

Tue Nov 20 16:50:52 1997  Klaus Kaempf  <kkaempf@progis.de>

	* vms.h (ASM_OUTPUT_ADDR_VEC_ELT): Add an L for the local label
	to correspond with the change to ASM_GENERATE_INTERNAL_LABEL.

===================================================================
RCS file: alpha/RCS/vms.h,v
retrieving revision 1.6
diff -c -r1.6 alpha/vms.h
*** alpha/vms.h	1997/11/09 14:10:16	1.6
--- alpha/vms.h	1997/11/20 15:43:30
***************
*** 242,248 ****
  
  #undef ASM_OUTPUT_ADDR_VEC_ELT
  #define ASM_OUTPUT_ADDR_VEC_ELT(FILE, VALUE) \
!   fprintf (FILE, "\t.quad $%d\n", (VALUE) + 32)
  
  #undef READONLY_DATA_SECTION
  #define READONLY_DATA_SECTION readonly_section
--- 242,248 ----
  
  #undef ASM_OUTPUT_ADDR_VEC_ELT
  #define ASM_OUTPUT_ADDR_VEC_ELT(FILE, VALUE) \
!   fprintf (FILE, "\t.quad $L%d\n", (VALUE))
  
  #undef READONLY_DATA_SECTION
  #define READONLY_DATA_SECTION readonly_section


-- 
proGIS Software                 E-Mail: kkaempf@progis.de
Dipl.-Inform. Klaus K"ampf      Fax:    0241-47067-29
Jakobstr. 117                   Voice:  0241-47067-11
D-52064 Aachen                  WWW:	http://www.progis.de


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

* Re: egcs-971114 fails on alpha-dec-osf4.0
  1997-11-20  7:56     ` Klaus Kaempf
@ 1997-11-20 15:37       ` Jeffrey A Law
  0 siblings, 0 replies; 8+ messages in thread
From: Jeffrey A Law @ 1997-11-20 15:37 UTC (permalink / raw)
  To: Klaus Kaempf; +Cc: rth, egcs

  In message < 9711201553.AA08533@progis.de >you write:
  > A similar change as Richard posted last week is needed for VMS:
  > 
  > Tue Nov 20 16:50:52 1997  Klaus Kaempf  <kkaempf@progis.de>
  > 
  > 	* vms.h (ASM_OUTPUT_ADDR_VEC_ELT): Add an L for the local label
  > 	to correspond with the change to ASM_GENERATE_INTERNAL_LABEL.
Thanks.  Installed.
jeff

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

* Re: egcs-971114 fails on alpha-dec-osf4.0
  1997-11-15  6:41 ` Weiwen Liu
@ 1997-11-16 21:02   ` Jeffrey A Law
  0 siblings, 0 replies; 8+ messages in thread
From: Jeffrey A Law @ 1997-11-16 21:02 UTC (permalink / raw)
  To: Weiwen Liu; +Cc: Kaveh R. Ghazi, rth, egcs

  In message < Pine.OSF.3.96.971115094026.7015B-100000@hepunix1.physics.yale.edu you write:
  > I did a bootstrap with the patch from rth, and it succeeds.
Thanks for the update.  I'll install the patch.

jeff

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

* Re: egcs-971114 fails on alpha-dec-osf4.0
  1997-11-15  6:36 Kaveh R. Ghazi
@ 1997-11-15  6:41 ` Weiwen Liu
  1997-11-16 21:02   ` Jeffrey A Law
  0 siblings, 1 reply; 8+ messages in thread
From: Weiwen Liu @ 1997-11-15  6:41 UTC (permalink / raw)
  To: Kaveh R. Ghazi; +Cc: law, rth, egcs

I did a bootstrap with the patch from rth, and it succeeds.

On Sat, 15 Nov 1997, Kaveh R. Ghazi wrote:

>  > From: Richard Henderson <rth@cygnus.com>
>  > 
>  > On Fri, Nov 14, 1997 at 05:49:33PM -0700, Jeffrey A Law wrote:
>  > >   > cccp.o: Error: symbol $220 has a GPREL32 relocation and is unresolved.
> 
> 
> 	Same here.
> 
> 
>  > > Please work with rth to get these problems solved.
>  > 
>  > Sigh, another stupid mistake.  I must have bootstrapped from
>  > the wrong tree after I made this change.
>  > Sorry about that.
>  > r~
>  > 
>  > Fri Nov 14 17:27:52 1997  Richard Henderson  <rth@cygnus.com>
>  > 
>  > 	* alpha.h (ASM_OUTPUT_ADDR_DIFF_ELT): Add an L for the local label
>  > 	to correspond with the change to ASM_GENERATE_INTERNAL_LABEL.
> 
> 
> 	I'm rebootstrapping now with your patch and I'll let you know
> how it goes.
> 
> 		--Kaveh
> --
> Kaveh R. Ghazi				Project Manager
> ghazi@caip.rutgers.edu			ICon CMT Corp.
> 


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

* Re: egcs-971114 fails on alpha-dec-osf4.0
@ 1997-11-15  6:36 Kaveh R. Ghazi
  1997-11-15  6:41 ` Weiwen Liu
  0 siblings, 1 reply; 8+ messages in thread
From: Kaveh R. Ghazi @ 1997-11-15  6:36 UTC (permalink / raw)
  To: law, rth; +Cc: egcs, liu

 > From: Richard Henderson <rth@cygnus.com>
 > 
 > On Fri, Nov 14, 1997 at 05:49:33PM -0700, Jeffrey A Law wrote:
 > >   > cccp.o: Error: symbol $220 has a GPREL32 relocation and is unresolved.


	Same here.


 > > Please work with rth to get these problems solved.
 > 
 > Sigh, another stupid mistake.  I must have bootstrapped from
 > the wrong tree after I made this change.
 > Sorry about that.
 > r~
 > 
 > Fri Nov 14 17:27:52 1997  Richard Henderson  <rth@cygnus.com>
 > 
 > 	* alpha.h (ASM_OUTPUT_ADDR_DIFF_ELT): Add an L for the local label
 > 	to correspond with the change to ASM_GENERATE_INTERNAL_LABEL.


	I'm rebootstrapping now with your patch and I'll let you know
how it goes.

		--Kaveh
--
Kaveh R. Ghazi				Project Manager
ghazi@caip.rutgers.edu			ICon CMT Corp.

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

end of thread, other threads:[~1997-11-20 15:37 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1997-11-14 15:03 egcs-971114 fails on alpha-dec-osf4.0 Weiwen Liu
1997-11-14 16:47 ` Jeffrey A Law
1997-11-14 17:44   ` Richard Henderson
1997-11-20  7:56     ` Klaus Kaempf
1997-11-20 15:37       ` Jeffrey A Law
1997-11-15  6:36 Kaveh R. Ghazi
1997-11-15  6:41 ` Weiwen Liu
1997-11-16 21:02   ` Jeffrey A Law

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).