summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Sayle <roger@eyesopen.com>2003-07-25 14:32:55 +0000
committerRoger Sayle <sayle@gcc.gnu.org>2003-07-25 14:32:55 +0000
commit6c84c6686d1ec71c9eea05ce48366a94ab85e1bf (patch)
tree0763ccf20da2213b41662bca86c7e906e49742d6
parent8460025b07810967210fcda76bdf6fe4ddc20470 (diff)
downloadgcc-6c84c6686d1ec71c9eea05ce48366a94ab85e1bf.tar.gz
configure.host: Only use +ESdbgasm when using the HPUX native compiler on PA-Risc.
* 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. From-SVN: r69788
-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