* configure.host: Only use +ESdbgasm when using the HPUX native
authorsayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 25 Jul 2003 14:32:55 +0000 (14:32 +0000)
committersayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 25 Jul 2003 14:32:55 +0000 (14:32 +0000)
compiler on PA-Risc.  It isn't recognized by GCC and is silently
ignored by HP's compilers on ia64.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@69788 138bc75d-0d04-0410-961f-82ee72b054a4

boehm-gc/ChangeLog
boehm-gc/configure.host

index f3d34f2..91acf27 100644 (file)
@@ -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
index da2b5b3..82294cf 100644 (file)
@@ -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