From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1473 invoked by alias); 16 Oct 2011 21:19:27 -0000 Received: (qmail 1461 invoked by uid 22791); 16 Oct 2011 21:19:26 -0000 X-SWARE-Spam-Status: No, hits=-2.3 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW X-Spam-Check-By: sourceware.org Received: from mail-vx0-f171.google.com (HELO mail-vx0-f171.google.com) (209.85.220.171) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sun, 16 Oct 2011 21:19:12 +0000 Received: by vcbfk13 with SMTP id fk13so2728764vcb.2 for ; Sun, 16 Oct 2011 14:19:11 -0700 (PDT) Received: by 10.52.91.234 with SMTP id ch10mr17224542vdb.60.1318799951429; Sun, 16 Oct 2011 14:19:11 -0700 (PDT) Received: from [192.168.0.100] (S0106000cf16f58b1.wp.shawcable.net. [24.79.200.150]) by mx.google.com with ESMTPS id l4sm15264304vdv.4.2011.10.16.14.19.09 (version=SSLv3 cipher=OTHER); Sun, 16 Oct 2011 14:19:10 -0700 (PDT) Subject: Re: GCC dependencies (attn David Billinghurst) From: "Yaakov (Cygwin/X)" To: cygwin-apps Date: Sun, 16 Oct 2011 21:19:00 -0000 In-Reply-To: <20110813112813.GD4098@calimero.vinschen.de> References: <1311736317.5672.85.camel@YAAKOV04> <4E41804B.9060806@gmail.com> <1313150949.7828.18.camel@YAAKOV04> <4E454B52.2040801@gmail.com> <1313166071.7828.51.camel@YAAKOV04> <20110813112813.GD4098@calimero.vinschen.de> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Message-ID: <1318799951.7624.16.camel@YAAKOV04> Mime-Version: 1.0 Mailing-List: contact cygwin-apps-help@cygwin.com; run by ezmlm Precedence: bulk Sender: cygwin-apps-owner@cygwin.com List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Mail-Followup-To: cygwin-apps@cygwin.com X-SW-Source: 2011-10/txt/msg00041.txt.bz2 On Sat, 2011-08-13 at 13:28 +0200, Corinna Vinschen wrote: > here's a minor nit, but that bugs me for a while now. > > $ cc hello.c > $ ./a.out > bash: ./a.out: No such file or directory > > I would like to see that GCC for Cygwin creates the output file > "a.out.exe", so the result is the same on Unix/Linux and Cygwin: > > $ cc hello.c > $ ./a.out > hello, world Besides that POSIX requires a.out for the default output for c99 and fort77. Yaakov