Return-Path: Delivered-To: apmail-incubator-stdcxx-dev-archive@www.apache.org Received: (qmail 70765 invoked from network); 12 Sep 2005 23:29:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 12 Sep 2005 23:29:45 -0000 Received: (qmail 60614 invoked by uid 500); 12 Sep 2005 23:29:45 -0000 Delivered-To: apmail-incubator-stdcxx-dev-archive@incubator.apache.org Received: (qmail 60586 invoked by uid 500); 12 Sep 2005 23:29:44 -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 60573 invoked by uid 99); 12 Sep 2005 23:29:44 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Sep 2005 16:29:44 -0700 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; Mon, 12 Sep 2005 16:29:56 -0700 Received: from [10.70.3.113] (10.70.3.113 [10.70.3.113]) by bco-exchange.bco.roguewave.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2657.72) id NNYTRHJ9; Mon, 12 Sep 2005 17:28:27 -0600 Message-ID: <43260FDE.1080506@roguewave.com> Date: Mon, 12 Sep 2005 17:31:42 -0600 From: Martin Sebor User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.10) Gecko/20050716 X-Accept-Language: en-us, en MIME-Version: 1.0 To: stdcxx-dev@incubator.apache.org Subject: Re: 15d and 11s builds on Sun and Ibm, some errors others not References: <2960_4195_1126564700_31@inet3-n281> In-Reply-To: <2960_4195_1126564700_31@inet3-n281> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N LANCE DIDUCK, BLOOMBERG/ 731 LEXIN wrote: > > On 11s and 15d build for cc: Sun WorkShop 6 update 1 C 5.2 2000/09/11 (CC-5.2) > gets a number of warning plus errors like The library was never ported to 5.2. The compiler was just too flakey (we tried but gave up after about 2 months of struggling with various bizarre bugs). Given that they are up to 5.7 with 5.8 coming out I wouldn't waste time on something so old. [...] > > On ibm, using CONFIG=gcc.config (or default) get error > ibm2:/home/ldiduck/couttest/stdcxx-2005-07-19 $ gmake > BUILDDIR=/home/ldiduck/couttest/stdcxx-2005-07-19/ibmgcc15d BUILDTYPE=15d > config=gcc.config It's CONFIG, in all caps. But with no CONFIG defined it should read gcc.config by default, so this shouldn't be a problem. > etc/config/:1: *** missing separator. Stop. Not sure what this means (etc/config/:1:? Are you using GNU make?) It works fine for me: $ which gcc /package/1/compilers/gcc/gcc-3.2.1_powerpc-ibm-aix5.1.0.0/bin/gcc stdlib$ nice gmake BUILDDIR=/build/sebor/gcc-3.2.1-11s creating BUILDDIR=/build/sebor/gcc-3.2.1-11s generating /build/sebor/gcc-3.2.1-11s/makefile.in... gmake[1]: Entering directory `/build/sebor/gcc-3.2.1-11s' gmake[2]: Entering directory `/build/sebor/gcc-3.2.1-11s/include' gmake config gmake[3]: Entering directory `/build/sebor/gcc-3.2.1-11s/include' ... configuring for gcc-3.2.1 on AIX-5.2 checking if compiler is sane ok checking if linker is sane ok checking if run environment is sane ok checking system architecture ILP32 big endian ... > > ibm vacpp 6 builds clean, and so does Sun gcc 3.3.2 CC for 11s and 15d builds > Also, how do I change the compiler i.e. we have Studio 8 compilers, they just > arent the default Tried export CC but that didn't work It will pick up whatever CC comes first in your PATH. I.e., simply make sure the version of the compiler you want to use is first. If you have SunPro 5.8 in, say, /opt/SUNWspro/C++5.8/bin, set PATH to $ PATH=/opt/SUNWspro/C++5.8/bin:$PATH $ export PATH Martin