This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: Atomic operations for PA
- From: Benjamin Kosnik <bkoz at redhat dot com>
- To: "John David Anglin" <dave at hiauly1 dot hia dot nrc dot ca>
- Cc: gcc-patches at gcc dot gnu dot org, libstdc++ at gcc dot gnu dot org
- Date: Tue, 5 Nov 2002 12:50:20 -0600
- Subject: Re: Atomic operations for PA
- References: <200211051724.gA5HOcUR022990@hiauly1.hia.nrc.ca>
>The patch has been tested on hppa-unknown-linux-gnu, hppa2.0-hp-hpux11*,
>and hppa64-hp-hpux11*. There are no regressions and under hppa-linux
>it appears to fix pthread[2-3].cc.
Ok, with comments.
>Index: configure.target
>===================================================================
>RCS file: /cvsroot/gcc/gcc/libstdc++-v3/configure.target,v
>retrieving revision 1.54
>diff -u -3 -p -r1.54 configure.target
>--- configure.target 2 Nov 2002 01:42:21 -0000 1.54
>+++ configure.target 4 Nov 2002 21:17:15 -0000
>@@ -72,6 +72,9 @@ case "${target_cpu}" in
> athlon* | i586 | i686 | i786 | x86_64)
> cpu_include_dir="cpu/i486"
> ;;
>+ hppa*)
>+ cpu_include_dir="cpu/hppa"
>+ ;;
> m680[246]0)
> cpu_include_dir="cpu/m68k"
> ;;
This is the default. I don't think you need this part (see ia64, which
also doesn't need this part.)
-benjamin