diff options
author | Alan Modra <amodra@gmail.com> | 2002-12-17 04:17:21 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2002-12-17 04:17:21 +0000 |
commit | 1b3e3744305453adf44349448976cf5d47aaa9b0 (patch) | |
tree | f678f9a25fbc76d958d20aab1be8d85e57144dee | |
parent | c2617f40672c99c841002496a79d763bbda49bef (diff) | |
download | gdb-1b3e3744305453adf44349448976cf5d47aaa9b0.zip gdb-1b3e3744305453adf44349448976cf5d47aaa9b0.tar.gz gdb-1b3e3744305453adf44349448976cf5d47aaa9b0.tar.bz2 |
* configure.host (ia64-*-hpux*): Support 64 bit targets using
the HP compiler's "long long".
-rw-r--r-- | bfd/ChangeLog | 7 | ||||
-rw-r--r-- | bfd/configure.host | 4 |
2 files changed, 10 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 1ac7d7b..a71f60a 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,9 +1,14 @@ +2002-12-17 Roger Sayle <roger@eyesopen.com> + + * configure.host (ia64-*-hpux*): Support 64 bit targets using + the HP compiler's "long long". + 2002-12-16 Andrew MacLeod <amacleod@redhat.com> * elf32-xstormy16.c (xstormy16_elf_howto): Add R_XSTORMY16_LO16 and R_XSTORMY16_HI16) howto entries. (xstormy16_reloc_map): Map R_XSTORMY16_{LO,HI}16 to BFD_RELOC_{LO,HI}16. - (xstormy16_info_to_howto_rela): Use R_XSTORMY16_GNU_VTINHERIT to + (xstormy16_info_to_howto_rela): Use R_XSTORMY16_GNU_VTINHERIT to determine the start of the second reloc table. 2002-12-16 Nathan Tallent <eraxxon@alumni.rice.edu> diff --git a/bfd/configure.host b/bfd/configure.host index 207e4c0..634b0b1 100644 --- a/bfd/configure.host +++ b/bfd/configure.host @@ -32,6 +32,10 @@ hppa*-*-osf*) HDEFINES=-DHOST_HPPAOSF ;; ia64-*-linux*) host64=true; HOST_64BIT_TYPE=long ;; ia64-*-aix*) host64=true; HOST_64BIT_TYPE=long ;; +ia64-*-hpux*) host64=true + HOST_64BIT_TYPE="long long"; + HOST_U_64BIT_TYPE="unsigned long long"; + ;; i[3456]86-sequent-bsd*) HDEFINES=-Dshared=genshared ;; i[3456]86-sequent-sysv4*) ;; |