X-Recipient: archive-cygwin@delorie.com
X-SWARE-Spam-Status: No, hits=-2.6 required=5.0	tests=AWL,BAYES_00,FREEMAIL_FROM,KHOP_THREADED,RCVD_IN_DNSWL_NONE,RCVD_IN_HOSTKARMA_YE,RP_MATCHES_RCVD
X-Spam-Check-By: sourceware.org
Message-ID: <50EEFA40.5010506@alice.it>
Date: Thu, 10 Jan 2013 18:28:32 +0100
From: Angelo Graziosi <angelo.graziosi@alice.it>
User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:17.0) Gecko/20130107 Thunderbird/17.0.2
MIME-Version: 1.0
To: Cygwin <cygwin@cygwin.com>
Subject: Re: Clang and windows headers
References: <50EEEA49.1050507@alice.it>
In-Reply-To: <50EEEA49.1050507@alice.it>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm
List-Id: <cygwin.cygwin.com>
List-Subscribe: <mailto:cygwin-subscribe@cygwin.com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin@cygwin.com>
List-Help: <mailto:cygwin-help@cygwin.com>, <http://sourceware.org/ml/#faqs>
Sender: cygwin-owner@cygwin.com
Mail-Followup-To: cygwin@cygwin.com
Delivered-To: mailing list cygwin@cygwin.com

Zeeman wrote:

> I have hit this too with log4cplus. This is my workaround:
>
> // Work around missing _X86_ symbol with Clang on Cygwin.
> #if ! defined (_X86_) && defined (__i386__)
> #  define _X86_ 1
> #endif
> #include <windows.h>

Yes, also

clang++ -D_X86_=1 -c foo.cxx -o foo.o

works...

Anyway, perhaps this is an issue with CLANG.. Indeed I notice that

$ echo | gcc -dD -E - | grep X86
#define _X86_ 1

$ echo | clang -dD -E - | grep X86
EMPTY

So gcc defines that symbol, clang not...

Ciao,
  Angelo.


--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

