From: Roger Sayle Date: Fri, 25 Jul 2003 14:32:55 +0000 (+0000) Subject: configure.host: Only use +ESdbgasm when using the HPUX native compiler on PA-Risc. X-Git-Tag: releases/gcc-3.4.0~4612 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6c84c6686d1ec71c9eea05ce48366a94ab85e1bf;p=thirdparty%2Fgcc.git 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 --- diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog index f3d34f22ca24..91acf278de07 100644 --- a/boehm-gc/ChangeLog +++ b/boehm-gc/ChangeLog @@ -1,3 +1,9 @@ +2003-07-25 Roger Sayle + + * 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 * configure.in: define GC_DLL under mingw if --enable-shared diff --git a/boehm-gc/configure.host b/boehm-gc/configure.host index da2b5b31a0e9..82294cf6ef17 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