summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeoffrey Keating <geoffk@geoffk.org>2000-07-25 19:29:42 +0000
committerGeoffrey Keating <geoffk@geoffk.org>2000-07-25 19:29:42 +0000
commiteae0730b14ecf49b3736bd150af318bbb2a362b1 (patch)
tree4684a360c360db8732ce9d4c729c65d4f98dd928
parente3210e4eb466bccc7652c5f72e005f3d5ecbee7d (diff)
downloadbinutils-redhat-eae0730b14ecf49b3736bd150af318bbb2a362b1.tar.gz
* configure.host (*-*-aix*): AIX has 'long long' always.
-rw-r--r--bfd/ChangeLog2
-rw-r--r--bfd/configure.host4
2 files changed, 6 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index c93a5a310d..369173749a 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,5 +1,7 @@
2000-07-25 Geoffrey Keating <geoffk@cygnus.com>
+ * configure.host (*-*-aix*): AIX has 'long long' always.
+
* coff-rs6000.c (xcoff_write_one_armap_big): New procedure.
(xcoff_write_armap_big): Write both 32-bit and 64-bit armaps.
(xcoff_write_archive_contents_big): Don't update the offset
diff --git a/bfd/configure.host b/bfd/configure.host
index bd5391cd7d..c72a4b3012 100644
--- a/bfd/configure.host
+++ b/bfd/configure.host
@@ -48,6 +48,10 @@ mips*-*-riscos*) HDEFINES="-G 4" ;;
m68*-hp-hpux*) HDEFINES=-DHOST_HP300HPUX ;;
+*-*-aix*) HOST_64BIT_TYPE="long long"
+ HOST_U_64BIT_TYPE="unsigned long long"
+ ;;
+
*-*-solaris*) HOST_64BIT_TYPE="long long"
HOST_U_64BIT_TYPE="unsigned long long"
;;