From 6c84c6686d1ec71c9eea05ce48366a94ab85e1bf Mon Sep 17 00:00:00 2001 From: Roger Sayle Date: Fri, 25 Jul 2003 14:32:55 +0000 Subject: [PATCH] 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 --- boehm-gc/ChangeLog | 6 ++++++ boehm-gc/configure.host | 6 ++++-- 2 files changed, 10 insertions(+), 2 deletions(-) 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 -- 2.47.2