Return-Path: Delivered-To: apmail-incubator-stdcxx-dev-archive@www.apache.org Received: (qmail 20694 invoked from network); 8 Dec 2005 01:01:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 8 Dec 2005 01:01:52 -0000 Received: (qmail 22729 invoked by uid 500); 8 Dec 2005 01:01:52 -0000 Delivered-To: apmail-incubator-stdcxx-dev-archive@incubator.apache.org Received: (qmail 22670 invoked by uid 500); 8 Dec 2005 01:01:51 -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 22659 invoked by uid 99); 8 Dec 2005 01:01:51 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Dec 2005 17:01:51 -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, 07 Dec 2005 17:01:50 -0800 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 S0A37VCG; Wed, 7 Dec 2005 17:56:26 -0700 Message-ID: <439786AC.1000205@roguewave.com> Date: Wed, 07 Dec 2005 18:04:44 -0700 From: Martin Sebor User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050920 X-Accept-Language: en-us, en MIME-Version: 1.0 To: stdcxx-dev@incubator.apache.org Subject: Re: makefiles issues References: <439711D3.4010302@moscow.vdiweb.com> <43975E08.1000109@roguewave.com> <4397628A.8050904@roguewave.com> <43976334.3000600@roguewave.com> In-Reply-To: <43976334.3000600@roguewave.com> 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 Liviu Nicoara wrote: [...] > When invoked from TOPDIR, e.g.: > > $ pwd > > /build/nicoara/dev/stdlib > > $ make BUILDDIR=/build/nicoara/11s-stdlib-gnu BUILDTYPE=11s > CONFIG=gcc.config lib I see. I'm not sure whether this ever worked or that it was intended to. The current behavior, when no target is specified, is to create BUILDDIR and try to build everything. I suppose specifying a target would let us build just the specified target (and its dependencies), which would be useful. Would you mind opening an issue in Jira for this? See STDCXX-18 or STDCXX-80 for examples of similar issues and what to put in them: http://issues.apache.org/jira/browse/STDCXX-18 http://issues.apache.org/jira/browse/STDCXX-80 In addition to copying the text of the email to the issue it's good to cross-reference the discussion on the list. Here's a link to your post in the archives: http://mail-archives.apache.org/mod_mbox/incubator-stdcxx-dev/200512.mbox/%3c43976334.3000600@roguewave.com%3e Thanks Martin > > it yields: > > $ gmake BUILDTYPE=11s BUILDDIR=/build/nicoara/11s-stdlib-gnu > CONFIG=gcc.config lib > > creating BUILDDIR=/build/nicoara/11s-stdlib-gnu > generating /build/nicoara/11s-stdlib-gnu/makefile.in from > /build/nicoara/dev/stdlib/etc/config/gcc.config > gmake[1]: Entering directory `/build/nicoara/11s-stdlib-gnu' > gmake[2]: Entering directory `/build/nicoara/11s-stdlib-gnu/lib' > generating dependencies for $(TOPDIR)/src/atomic.S > generating dependencies for $(TOPDIR)/src/atomic-cxx.S > generating dependencies for $(TOPDIR)/src/wctype.cpp > In file included from /build/nicoara/dev/stdlib/include/rw/_defs.h:40, > from /build/nicoara/dev/stdlib/src/wctype.cpp:36: > /build/nicoara/dev/stdlib/include/rw/_config.h:41:22: config.h: No such > file or directory > generating dependencies for $(TOPDIR)/src/wcodecvt.cpp > ........................ > > Liviu