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
This commit is contained in:
Roger Sayle 2003-07-25 14:32:55 +00:00 committed by Roger Sayle
parent 8460025b07
commit 6c84c6686d
2 changed files with 10 additions and 2 deletions

View 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

View 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