From stdcxx-dev-return-2406-apmail-incubator-stdcxx-dev-archive=incubator.apache.org@incubator.apache.org Fri Dec 01 22:24:17 2006 Return-Path: Delivered-To: apmail-incubator-stdcxx-dev-archive@www.apache.org Received: (qmail 26635 invoked from network); 1 Dec 2006 22:24:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 1 Dec 2006 22:24:17 -0000 Received: (qmail 27522 invoked by uid 500); 1 Dec 2006 22:24:25 -0000 Delivered-To: apmail-incubator-stdcxx-dev-archive@incubator.apache.org Received: (qmail 27508 invoked by uid 500); 1 Dec 2006 22:24:25 -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 27497 invoked by uid 99); 1 Dec 2006 22:24:25 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 01 Dec 2006 14:24:25 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [208.30.140.160] (HELO moroha.quovadx.com) (208.30.140.160) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 01 Dec 2006 14:24:14 -0800 Received: from [10.70.3.48] ([10.70.3.48]) by moroha.quovadx.com (8.13.6/8.13.6) with ESMTP id kB1MNfcD010375 for ; Fri, 1 Dec 2006 22:23:41 GMT Message-ID: <4570AB78.2000206@roguewave.com> Date: Fri, 01 Dec 2006 15:23:52 -0700 From: Andrew Black User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.8) Gecko/20061029 SeaMonkey/1.0.6 MIME-Version: 1.0 To: stdcxx-dev@incubator.apache.org Subject: Re: Nightly testing failures on AIX 5.3 References: <4570631F.7010906@roguewave.com> <4570A573.3050102@roguewave.com> In-Reply-To: <4570A573.3050102@roguewave.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Martin Sebor wrote: > Andrew Black wrote: [...] >> I see two possible solutions to this issue. The first solution is to >> add the rwtest directory to the path passed to the -R switch. The >> second solution is to remove the use of the -bsrv4 and -R switches on >> AIX 5.3 (the AIX 5.2 linker doesn't support the switches, >> necessitating http://svn.apache.org/viewvc?view=rev&rev=480679 ). >> >> Thoughts? > > I vote for the first approach. It works in my testing > and it is what we will eventually need to do once we > start building rwtest as a shared library. > > Btw., I note that the -Wl,-bsvr4,-R$(LIBDIR) option > is on the library link line. I don't see why we need > to specify it there. Unless you have a goof reason > for it to be there can you please remove it? The reason the option ends up on the library link line is because it's being defined in the SHARED_LDFLAGS variable in the different compiler.config files. This variable is one of the variables used to generate the LDFLAGS variable in the generated makefile.in file. It could be asserted that this is not a good reason for the option to be included on the library link line, and I would tend to agree with that assertion. The only counter-argument I have is that it would be more complex to separate this option so that it isn't included on library link lines. --Andrew Black > > Martin