Return-Path: Delivered-To: apmail-incubator-stdcxx-dev-archive@www.apache.org Received: (qmail 55221 invoked from network); 8 Feb 2006 22:23:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 8 Feb 2006 22:23:28 -0000 Received: (qmail 85141 invoked by uid 500); 8 Feb 2006 22:23:07 -0000 Delivered-To: apmail-incubator-stdcxx-dev-archive@incubator.apache.org Received: (qmail 85126 invoked by uid 500); 8 Feb 2006 22:23:07 -0000 Mailing-List: contact stdcxx-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: stdcxx-dev@incubator.apache.org Delivered-To: mailing list stdcxx-dev@incubator.apache.org Received: (qmail 85109 invoked by uid 99); 8 Feb 2006 22:23:07 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Feb 2006 14:23:07 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [12.17.213.84] (HELO bco-exchange.bco.roguewave.com) (12.17.213.84) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Feb 2006 14:23:06 -0800 Received: by bco-exchange.bco.roguewave.com with Internet Mail Service (5.5.2657.72) id ; Wed, 8 Feb 2006 15:15:01 -0700 Message-ID: <4FA4B7B3231C5D459E7BAD020213A94202948F95@bco-exchange.bco.roguewave.com> From: Nicole Willson To: "'stdcxx-dev@incubator.apache.org'" Subject: RE: Any ideas on these StdLib build errors? Date: Wed, 8 Feb 2006 15:15:00 -0700 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2657.72) Content-Type: text/plain X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N NO! It's MY test case. :) I actually streamlined it a little more. Ok, here it is: //Test case for ICE on SuSE 9sp2 with xlC 8.0 #include template class codecvt_byname { public: explicit codecvt_byname (){} }; template<> class codecvt_byname { public: explicit codecvt_byname (); }; codecvt_byname::codecvt_byname () { static struct {int flag;} mods = {1}; int flags = 0; flags = mods.flag; } //End Test case for ICE on SuSE 9sp2 with xlC 8.0 The error shows up while trying to build stdlib - specifically wcodecvt.cpp. Nicole Willson Consulting Engineer Rogue Wave Software, Inc. A Division of Quovadx 303-545-3210 -----Original Message----- From: Martin Sebor [mailto:sebor@roguewave.com] Sent: Wednesday, February 08, 2006 3:14 PM To: stdcxx-dev@incubator.apache.org Subject: Re: Any ideas on these StdLib build errors? Nicole Willson wrote: > Ok, I have a test case for this ICE. It's a very specific combination of > #include , a specialized template class, and an array of static > struct. So, I can see how the bug got past them. However, I'm not sure how > to workaround this bug. I need all of these components together. I'll see > if I can somehow not use string.h I'm sure we can come up with a way if you could just show us the test case... ;-) Martin