mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-28 12:33:36 +08:00
* cpu-hppa.c (bfd_hppa20_arch): Define. Link it into the bfd_hppa_arch
structure. * som.c (CPU_PA_RISC2_0): Define. (_PA_RISC2_0_ID): Likewise. (som_finish_writing): Use CPU_PA_RISC2_0 for the system_id as needed. PA2.0 infrastructure.
This commit is contained in:
parent
0f529d8c15
commit
6886ab292b
@ -1,3 +1,11 @@
|
||||
Sun Oct 4 20:38:29 1998 Jeffrey A Law (law@cygnus.com)
|
||||
|
||||
* cpu-hppa.c (bfd_hppa20_arch): Define. Link it into the bfd_hppa_arch
|
||||
structure.
|
||||
* som.c (CPU_PA_RISC2_0): Define.
|
||||
(_PA_RISC2_0_ID): Likewise.
|
||||
(som_finish_writing): Use CPU_PA_RISC2_0 for the system_id as needed.
|
||||
|
||||
Sun Oct 4 21:19:09 1998 Ian Lance Taylor <ian@cygnus.com>
|
||||
|
||||
* elf32-i386.c (elf_i386_info_to_howto_rel): Handle vtable relocs
|
||||
|
15
bfd/som.c
15
bfd/som.c
@ -30,13 +30,10 @@
|
||||
#include "libbfd.h"
|
||||
#include "som.h"
|
||||
|
||||
#include <stdio.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/param.h>
|
||||
#include <signal.h>
|
||||
#include <machine/reg.h>
|
||||
#include <sys/file.h>
|
||||
#include <errno.h>
|
||||
#include <ctype.h>
|
||||
|
||||
/* Magic not defined in standard HP-UX header files until 8.0 */
|
||||
@ -49,6 +46,10 @@
|
||||
#define CPU_PA_RISC1_1 0x210
|
||||
#endif /* CPU_PA_RISC1_1 */
|
||||
|
||||
#ifndef CPU_PA_RISC2_0
|
||||
#define CPU_PA_RISC2_0 0x214
|
||||
#endif /* CPU_PA_RISC2_0 */
|
||||
|
||||
#ifndef _PA_RISC1_0_ID
|
||||
#define _PA_RISC1_0_ID CPU_PA_RISC1_0
|
||||
#endif /* _PA_RISC1_0_ID */
|
||||
@ -57,6 +58,10 @@
|
||||
#define _PA_RISC1_1_ID CPU_PA_RISC1_1
|
||||
#endif /* _PA_RISC1_1_ID */
|
||||
|
||||
#ifndef _PA_RISC2_0_ID
|
||||
#define _PA_RISC2_0_ID CPU_PA_RISC2_0
|
||||
#endif /* _PA_RISC2_0_ID */
|
||||
|
||||
#ifndef _PA_RISC_MAXID
|
||||
#define _PA_RISC_MAXID 0x2FF
|
||||
#endif /* _PA_RISC_MAXID */
|
||||
@ -3649,6 +3654,8 @@ som_finish_writing (abfd)
|
||||
BFD private data happens *after* section contents are set. */
|
||||
if (abfd->flags & (EXEC_P | DYNAMIC))
|
||||
obj_som_file_hdr(abfd)->system_id = obj_som_exec_data (abfd)->system_id;
|
||||
else if (bfd_get_mach (abfd) == pa20)
|
||||
obj_som_file_hdr(abfd)->system_id = CPU_PA_RISC2_0;
|
||||
else if (bfd_get_mach (abfd) == pa11)
|
||||
obj_som_file_hdr(abfd)->system_id = CPU_PA_RISC1_1;
|
||||
else
|
||||
@ -5975,6 +5982,8 @@ som_bfd_link_split_section (abfd, sec)
|
||||
#define som_bfd_link_add_symbols _bfd_generic_link_add_symbols
|
||||
#define som_bfd_final_link _bfd_generic_final_link
|
||||
|
||||
#define som_bfd_gc_sections bfd_generic_gc_sections
|
||||
|
||||
|
||||
const bfd_target som_vec =
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user