]> granicus.if.org Git - gc/commitdiff
* 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)
committerguest <ivmai@mail.ru>
Fri, 29 Jul 2011 06:54:23 +0000 (10:54 +0400)
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

ChangeLog
configure.host

index f3d34f22ca244ff60acd0a81d31afc876d30ae05..91acf278de073be4b24feef2cb08da193622b432 100644 (file)
--- a/ChangeLog
+++ b/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
index da2b5b31a0e9c1a91d60f94003da3e839dbac233..82294cf6ef17bc1acf139b9455b51944dafd8ab8 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