diff options
author | sayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-25 14:32:55 +0000 |
---|---|---|
committer | sayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-25 14:32:55 +0000 |
commit | 61a44c4fc96db617b5b28136ef8b852e825342e7 (patch) | |
tree | 0763ccf20da2213b41662bca86c7e906e49742d6 /boehm-gc | |
parent | e43e3c375e2e6836dd5f338ff121f7abb93169e4 (diff) | |
download | gcc-61a44c4fc96db617b5b28136ef8b852e825342e7.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@69788 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'boehm-gc')
-rw-r--r-- | boehm-gc/ChangeLog | 6 | ||||
-rw-r--r-- | boehm-gc/configure.host | 6 |
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 |