This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: ld: BFD 2.11.92.0.10 20011021 Debian/GNU Linux internal error, aborting at ../../bfd/elf32-hppa.c line 848 in hppa_build_one_stub


Another small fix.

bfd/ChangeLog
	* elf32-hppa.c (elf32_hppa_size_stubs): Don't consider undefined
	millicode syms as candidates for import stubs.

-- 
Alan Modra

Index: bfd/elf32-hppa.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-hppa.c,v
retrieving revision 1.60
diff -u -p -r1.60 elf32-hppa.c
--- elf32-hppa.c	2001/11/19 01:25:00	1.60
+++ elf32-hppa.c	2001/11/19 02:58:32
@@ -3025,7 +3025,8 @@ elf32_hppa_size_stubs (output_bfd, stub_
 			  if (! (info->shared
 				 && !info->no_undefined
 				 && (ELF_ST_VISIBILITY (hash->elf.other)
-				     == STV_DEFAULT)))
+				     == STV_DEFAULT)
+				 && hash->elf.type != STT_PARISC_MILLI))
 			    continue;
 			}
 		      else


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]