summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--boehm-gc/ChangeLog6
-rw-r--r--boehm-gc/configure.host6
2 files changed, 10 insertions, 2 deletions
diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog
index f3d34f22ca2..91acf278de0 100644
--- a/boehm-gc/ChangeLog
+++ b/boehm-gc/ChangeLog
@@ -1,3 +1,9 @@
+2003-07-25 Roger Sayle <roger@eyesopen.com>
+
+ * configure.host: Only use +ESdbgasm when using the HPUX native
+ compiler on PA-Risc. It isn't recognized by GCC and is silently
+ ignored by HP's compilers on ia64.
+
2003-04-28 Mohan Embar <gnustuff@thisiscool.com>
* configure.in: define GC_DLL under mingw if --enable-shared
diff --git a/boehm-gc/configure.host b/boehm-gc/configure.host
index da2b5b31a0e..82294cf6ef1 100644
--- a/boehm-gc/configure.host
+++ b/boehm-gc/configure.host
@@ -24,8 +24,10 @@ case "$host" in
*-*-linux* )
gc_cflags=-fexceptions
;;
- *-*-hpux* )
- gc_cflags=+ESdbgasm
+ hppa*-*-hpux* )
+ if test $GCC != "yes" ; then
+ gc_cflags=+ESdbgasm
+ fi
;;
esac