This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
Re: [Patch] libstdc++/30586
- From: Paolo Carlini <pcarlini at suse dot de>
- To: Paolo Carlini <pcarlini at suse dot de>
- Cc: libstdc++ <libstdc++ at gcc dot gnu dot org>
- Date: Fri, 26 Jan 2007 19:11:41 +0100
- Subject: Re: [Patch] libstdc++/30586
- References: <45B93B3F.2030104@suse.de>
Paolo Carlini wrote:
Hi,
this is the patch I tested on ia64-linux (and x86-linux), rather
straightforward.
I'll wait until tomorrow evening italian time, anyway.
Committed to mainline and 4_2-branch.
As regards 4_1-branch, the bug is latent, because, as noticed by
Andreas, in that branch we have the more serious issue that the
atomic_word.h tailored at powerpc, alpha and ia64 are mistakenly not
used, instead just the generic one. Thus, I mean to commit there also
the below additional hunk.
Paolo.
////////////////
Index: configure.host
===================================================================
--- configure.host (revision 121196)
+++ configure.host (working copy)
@@ -119,9 +119,18 @@
# Set specific CPU overrides for atomic_word_dir. Most can just use
generic.
# THIS TABLE IS SORTED. KEEP IT THAT WAY.
case "${host_cpu}" in
+ alpha*)
+ atomic_word_dir=cpu/alpha
+ ;;
cris*)
atomic_word_dir=cpu/cris
;;
+ ia64)
+ atomic_word_dir=cpu/ia64
+ ;;
+ powerpc* | rs6000)
+ atomic_word_dir=cpu/powerpc
+ ;;
sparc* | ultrasparc)
atomic_word_dir=cpu/sparc
;;