* config.bfd: Include 64-bit support for i[3-7]86-*-solaris2*.
	* elf64-x86-64.c (elf64_x86_64_section_from_shdr): New function.
	(elf_backend_section_from_shdr): Define.
binutils/
	* readelf.c (get_x86_64_section_type_name): New function.
	(get_section_type_name): Use it.
gas/
	* config/tc-i386.c: Include "elf/x86-64.h".
	(i386_elf_section_type): New function.
	* config/tc-i386.h (md_elf_section_type): Define.
	(i386_elf_section_type): New prototype.
gas/testsuite/
	* gas/i386/i386.exp: Don't run divide test for targets where '/'
	is a comment.  Run x86-64-unwind for 64-bit ELF targets.
	* gas/i386/x86-64-unwind.d, gas/i386/x86-64-unwind.s: New.
include/
	* elf/common.h (PT_SUNW_EH_FRAME): Define.
	* elf/x86-64.h (SHT_X86_64_UNWIND): Define.
ld/
	* configure.tgt: Include elf_x86_64 for i[3-7]86-*-solaris2*.
This commit is contained in:
Daniel Jacobowitz
2004-10-08 13:55:11 +00:00
parent d67a454c81
commit d2b2c203e1
17 changed files with 149 additions and 3 deletions

View File

@ -2404,6 +2404,18 @@ get_ia64_section_type_name (unsigned int sh_type)
return NULL;
}
static const char *
get_x86_64_section_type_name (unsigned int sh_type)
{
switch (sh_type)
{
case SHT_X86_64_UNWIND: return "X86_64_UNWIND";
default:
break;
}
return NULL;
}
static const char *
get_arm_section_type_name (unsigned int sh_type)
{
@ -2467,6 +2479,9 @@ get_section_type_name (unsigned int sh_type)
case EM_IA_64:
result = get_ia64_section_type_name (sh_type);
break;
case EM_X86_64:
result = get_x86_64_section_type_name (sh_type);
break;
case EM_ARM:
result = get_arm_section_type_name (sh_type);
break;