This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [committed] Fix check_cxa_atexit_available for target "hppa.*hpux10"
- From: Janis Johnson <janis187 at us dot ibm dot com>
- To: John David Anglin <dave at hiauly1 dot hia dot nrc dot ca>
- Cc: gcc-patches at gcc dot gnu dot org
- Date: Wed, 13 Dec 2006 15:53:52 -0800
- Subject: Re: [committed] Fix check_cxa_atexit_available for target "hppa.*hpux10"
- References: <200612131854.kBDIsQNK019939@hiauly1.hia.nrc.ca>
On Wed, Dec 13, 2006 at 01:54:25PM -0500, John David Anglin wrote:
> The __cxa_atexit check incorrectly succeeds on hppa*-*-hpux10. The
> enclosed change modifes check_cxa_atexit_available to return false
> for this target.
>
> Tested on hppa1.1-hp-hpux10.20. Applied to trunk and 4.2.
> + } elseif { [regexp "hppa.*hpux10" $target_triplet] } {
Please change this to use [istarget "hppa*-*-hpux10*l"].
Janis