This is the mail archive of the binutils@sourceware.cygnus.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]

ELF_DYNAMIC_INTERPRETER changes for FreeBSD


FreeBSD uses a different name for it's ELF_DYNAMIC_INTERPRETER than the
values currently used by Binutils.

-- 
-- David    (obrien@FreeBSD.org)


2000-04-11  David O'Brien  <obrien@FreeBSD.org>

	* elf32-i386.c (ELF_DYNAMIC_INTERPRETER): Handle FreeBSD.
	* elf64-alpha.c (ELF_DYNAMIC_INTERPRETER): Likewise.



Index: elf32-i386.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-i386.c,v
retrieving revision 1.8
diff -u -r1.8 elf32-i386.c
--- elf32-i386.c	2000/03/01 19:40:53	1.8
+++ elf32-i386.c	2000/04/12 01:29:09
@@ -264,7 +264,11 @@
 /* The name of the dynamic interpreter.  This is put in the .interp
    section.  */
 
+#if defined(__FreeBSD__)
+#define ELF_DYNAMIC_INTERPRETER "/usr/libexec/ld-elf.so.1"
+#else
 #define ELF_DYNAMIC_INTERPRETER "/usr/lib/libc.so.1"
+#endif
 
 /* The size in bytes of an entry in the procedure linkage table.  */
 
Index: elf64-alpha.c
===================================================================
RCS file: /cvs/src/src/bfd/elf64-alpha.c,v
retrieving revision 1.8
diff -u -r1.8 elf64-alpha.c
--- elf64-alpha.c	2000/04/03 12:42:18	1.8
+++ elf64-alpha.c	2000/04/12 01:29:09
@@ -1671,7 +1671,11 @@
 
 #define MAX_GOT_ENTRIES		(64*1024 / 8)
 
+#if defined(__FreeBSD__)
+#define ELF_DYNAMIC_INTERPRETER "/usr/libexec/ld-elf.so.1"
+#else
 #define ELF_DYNAMIC_INTERPRETER "/usr/lib/ld.so"
+#endif
 
 /* Handle an Alpha specific section when reading an object file.  This
    is called when elfcode.h finds a section with an unknown type.


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