* libelf.h (NAME): Provide a default definition, that's neither
for 32 bits nor for 64. Tue Jun 15 14:38:32 1993 Michael Meissner (meissner@osf.org) * libelf.h (elf_hash): Change declaration to bfd_elf_hash, since that is what is in elf.c.
This commit is contained in:
parent
b114e49215
commit
153cb9ade3
2 changed files with 20 additions and 1 deletions
|
@ -1,3 +1,13 @@
|
|||
Fri Aug 6 15:13:22 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
|
||||
|
||||
* libelf.h (NAME): Provide a default definition, that's neither
|
||||
for 32 bits nor for 64.
|
||||
|
||||
Tue Jun 15 14:38:32 1993 Michael Meissner (meissner@osf.org)
|
||||
|
||||
* libelf.h (elf_hash): Change declaration to bfd_elf_hash, since
|
||||
that is what is in elf.c.
|
||||
|
||||
Fri Aug 6 12:28:38 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
|
||||
|
||||
* Makefile.in (coff-mips.o, coff-alpha.o): Don't depend on
|
||||
|
@ -15,6 +25,8 @@ Fri Aug 6 09:59:45 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
|||
|
||||
Thu Aug 5 13:22:44 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
|
||||
|
||||
* aoutx.h (log2): Delete i387-specific code.
|
||||
|
||||
* Makefile.in (BFD_LIBS): Always include elf.o.
|
||||
(BFD32_BACKENDS): Don't include elf.o here.
|
||||
(ofiles): Delete references to ofiles2 and ofiles3.
|
||||
|
@ -45,6 +57,9 @@ Thu Aug 5 13:22:44 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
|
|||
bfd_elf32_hash, since the hash table is independent of the 32/64
|
||||
bit system.
|
||||
|
||||
* libelf.h (elf_hash): Change declaration to bfd_elf_hash, since
|
||||
that is what is in elf.c.
|
||||
|
||||
Sat Jun 19 10:12:27 1993 Michael Meissner (meissner@osf.org)
|
||||
|
||||
* elf32-i386.h (reloc_type): Reformat spacing.
|
||||
|
|
|
@ -35,6 +35,10 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef NAME
|
||||
#define NAME(x,y) CAT4(x,NOSIZE,_,y)
|
||||
#endif
|
||||
|
||||
#define ElfNAME(X) NAME(Elf,X)
|
||||
#define elfNAME(X) NAME(elf,X)
|
||||
|
||||
|
@ -170,7 +174,7 @@ extern char * elf_get_str_section PARAMS ((bfd *, unsigned));
|
|||
#define bfd_elf64_mkobject bfd_elf_mkobject
|
||||
#define elf_mkobject bfd_elf_mkobject
|
||||
|
||||
extern unsigned long elf_hash PARAMS ((CONST unsigned char *));
|
||||
extern unsigned long bfd_elf_hash PARAMS ((CONST unsigned char *));
|
||||
|
||||
extern bfd_reloc_status_type bfd_elf_generic_reloc PARAMS ((bfd *,
|
||||
arelent *,
|
||||
|
|
Loading…
Reference in a new issue