Return-Path: Delivered-To: apmail-incubator-stdcxx-dev-archive@www.apache.org Received: (qmail 91334 invoked from network); 13 Sep 2005 00:47:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 13 Sep 2005 00:47:57 -0000 Received: (qmail 20339 invoked by uid 500); 13 Sep 2005 00:47:57 -0000 Delivered-To: apmail-incubator-stdcxx-dev-archive@incubator.apache.org Received: (qmail 20296 invoked by uid 500); 13 Sep 2005 00:47:56 -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 20282 invoked by uid 99); 13 Sep 2005 00:47:56 -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 17:47:56 -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 17:48:07 -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 NNYTRHLJ; Mon, 12 Sep 2005 18:46:38 -0600 Message-ID: <43262230.70607@roguewave.com> Date: Mon, 12 Sep 2005 18:49:52 -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: Cygwin build References: <200509130027.j8D0Qr1i011187@ms-smtp-01.rdc-nyc.rr.com> In-Reply-To: <200509130027.j8D0Qr1i011187@ms-smtp-01.rdc-nyc.rr.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 Lance Diduck wrote: > > << Could you please look into it and open a bug for this with the details?>> > Sure. I'll just open bugs for all Cygwin issues (there are more) Usually I > wont open a bug report for something that the docs don't claim support for, > but JIRA is more then just for bug reports? Yes, there are tasks and enhancements (or improvements) as well, but I would consider it a bug if the library didn't build on any platform unless we explicitly say it doesn't work there. The goal of the autoconfiguration tests is that they detect the capabilities of a platform and configure the library to deal with any limitations. > > Cygwin is very interesting -- NT originally had hooks for a POSIX1.1 > compatibility layer that was never built. I thought a layer was actually implemented, but it's so limited that I would hesitate to call it POSIX ;-) But that is where Interix aka SFU (Services For UNIX) should come in: http://www.microsoft.com/windowsserversystem/sfu/downloads/default.mspx > But Cygwin (other than the > filesystem issues) looks like what that layer may have looked like. With a > few tweaks it looks like the configuration system could support builds for > any compiler using the native or POSIX subsystems. Yes, in theory it should be possible to configure and build the library with MSVC using the GNUmakefiles. A while ago I think I even started to work on it, IIRC, never finished it. My approach was to write a cl.sh script as a replacement for the compiler and have the script translate UNIX paths to Windows ones (via the cygpath command) and pass them to MSVC. Martin