This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
Re: PATCH: Re: eh_globals.cc compilation errors with -threads under hpux 10.20
- To: dave at hiauly1 dot hia dot nrc dot ca
- Subject: Re: PATCH: Re: eh_globals.cc compilation errors with -threads under hpux 10.20
- From: Loren James Rittle <rittle at latour dot rsch dot comm dot mot dot com>
- Date: Wed, 23 May 2001 18:04:23 -0500 (CDT)
- CC: libstdc++ at gcc dot gnu dot org, bkoz at redhat dot com
- References: <200105232245.SAA21482@hiauly1.hia.nrc.ca>
- Reply-to: rittle at labs dot mot dot com
In article <200105232245.SAA21482@hiauly1.hia.nrc.ca>,
"John David Anglin" <dave@hiauly1.hia.nrc.ca> writes:
> Here how thing stand. Thoughts? I know there are more testsuite errors
> than before under i686 linux and I don't know why. On the otherhand,
> we weren't reaaly using the posix thread stuff.
I have to go to a hockey game right now. I will review this in detail
tonight.
Quick comment: I would like to see this entire hunk go away not be
extended. If we use gthr.h properly, then it should be unneeded:
no | none | single)
THREADH=threads-no.h
;;
+ dce)
+ THREADH=threads-dce.h
+ ;;
posix | pthreads)
THREADH=threads-posix.h
;;
- decosf1 | irix | mach | os2 | solaris | win32 | dce | vxworks)
+ decosf1 | irix | mach | os2 | solaris | win32 | vxworks)
AC_MSG_WARN(disabling unsupported thread package $target_thread_file)
THREADH=threads-no.h
;;
Otherwise, in general, I think you took it the way I was thinking.