Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm
List-Subscribe: <mailto:cygwin-subscribe@cygwin.com>
List-Archive: <http://sources.redhat.com/ml/cygwin/>
List-Post: <mailto:cygwin@cygwin.com>
List-Help: <mailto:cygwin-help@cygwin.com>, <http://sources.redhat.com/ml/#faqs>
Sender: cygwin-owner@cygwin.com
Mail-Followup-To: cygwin@cygwin.com
Delivered-To: mailing list cygwin@cygwin.com
Message-ID: <002301c2f734$736febf0$9a7586d9@ellixia>
Reply-To: "Elfyn McBratney" <elfyn-cygwin@exposure.org.uk>
From: "Elfyn McBratney" <elfyn-cygwin@exposure.org.uk>
To: "cygwin" <cygwin@cygwin.com>, "John Williams" <jwilliams@itee.uq.edu.au>
References: <b68arh$j9m$1@main.gmane.org>
Subject: Re: gcc/Cygwin awareness
Date: Mon, 31 Mar 2003 04:20:15 +0100
MIME-Version: 1.0
Content-Type: text/plain;
	charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Priority: 3
X-MSMail-Priority: Normal
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300

> Is there a macro defined in gcc when running under Cygwin as opposed to, 
> say, linux?

Not too sure, All I could find was GCC_VERSION , __GNUC__ and IN_GCC .

> I'd like to code something like
> 
> #ifdef _GCC_UNDER_CYGWIN
> blah blah
> #else
> blah blah
> #endif

You could use this

#if defined(__GNUC__) && defined(__CYGWIN__)
/* do blah on Cygwin under gcc */
blah ();
#else
/* no Cygwin, do fooblah */
fooblah ();
#endif




--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

