Re: gcc Cygwin package maintainer

2010-08-08 Thread Dave Korn
On 08/08/2010 00:00, Jerry DeLisle wrote: > So I have sjlj backwards. I will fix that. Then the following I am not > sure about. > > --disable-__cxa_atexit > > --enable-static --enable-shared --enable-shared-libgcc > > Shall I include these? Yes, do. I think they're mostly the default anyw

Re: gcc Cygwin package maintainer

2010-08-07 Thread Jerry DeLisle
On 08/07/2010 01:13 PM, Dave Korn wrote: On 07/08/2010 17:59, Jerry DeLisle wrote: Hi, Who is the Cygwin gcc package maintainer? I've been a bit AWOL recently, but I think that's still me :-/ I want to make sure my gfortran 4.6 experimental builds are consistent with Cygwin distributions

Re: gcc Cygwin package maintainer

2010-08-07 Thread Dave Korn
On 07/08/2010 17:59, Jerry DeLisle wrote: > Hi, > > Who is the Cygwin gcc package maintainer? I've been a bit AWOL recently, but I think that's still me :-/ > I want to make sure my > gfortran 4.6 experimental builds are consistent with Cygwin > distributions. I notice I have far fewer conf

Re: gcc + cygwin

2005-05-12 Thread Marcel
Thanks for the useful responses to my problem. The solution of removing stdout to the main() did indeed work for the moment. I apologise for the following simple question in advance: In the course of trying to figure out a solution to the gcc+cygwin problem on my own, I reinstalled some cygwin

Re: gcc + cygwin

2005-05-12 Thread Erik de Castro Lopo
Marcel wrote: > I've been using a particular set of C-code for years > on several systems (mostly linux on PC, or Unix on > some Sun) and could always get it to work when I moved > to a new machine. > > Now, I'm trying to get it to work on a PC with cygwin. > > cygcheck claims I have gcc version

RE: gcc + cygwin

2005-05-12 Thread Dave Korn
Original Message >From: Marcel >Sent: 12 May 2005 11:00 > I am NOT an experienced C or cygwin user, but the > problems I keep running into, appear to me that gcc > with cygwin behaves very differently from whatever I > had on the previous systems. Actually, it's not a difference in gcc,

Re: gcc/Cygwin awareness

2003-03-31 Thread John Williams
Hi Max, Max Bowsher wrote: John Williams wrote: Elfyn McBratney wrote: You could use this #if defined(__GNUC__) && defined(__CYGWIN__) So __CYGWIN__ is defined in the preprocessor environment when compiling under Cygwin? That's precisely what I'm after, thanks. General answer to this kind of

Re: gcc/Cygwin awareness

2003-03-31 Thread Max Bowsher
John Williams wrote: > Elfyn McBratney wrote: >> You could use this >> >> #if defined(__GNUC__) && defined(__CYGWIN__) > > So __CYGWIN__ is defined in the preprocessor environment when compiling > under Cygwin? That's precisely what I'm after, thanks. General answer to this kind of question: $

Re: gcc/Cygwin awareness

2003-03-30 Thread John Williams
Elfyn McBratney wrote: You could use this #if defined(__GNUC__) && defined(__CYGWIN__) So __CYGWIN__ is defined in the preprocessor environment when compiling under Cygwin? That's precisely what I'm after, thanks. John -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug re

Re: gcc/Cygwin awareness

2003-03-30 Thread Elfyn McBratney
> 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 define

Re: gcc, cygwin, jni headers

2002-11-29 Thread Al
Thank you. That patch did the trick. :-) - Original Message - From: "Elfyn McBratney" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, November 29, 2002 1:44 PM Subject: Re: gcc, cygwin, jni headers > Sorry i hust saw this on the net: > > htt

Re: gcc, cygwin, jni headers

2002-11-29 Thread Elfyn McBratney
Sorry i hust saw this on the net: http://www.xraylith.wisc.edu/~khan/software/gnu-win32/README.jni.txt Theres a bit about changing the header files, Maybe this will help. Elfyn [EMAIL PROTECTED] Hi, Ive seen one other post on this topic but there were no replies. Maybe Ill be more lucky. Im

Re: gcc, cygwin, jni headers

2002-11-29 Thread Elfyn McBratney
Hi, Ive seen one other post on this topic but there were no replies. Maybe Ill be more lucky. Im trying to compile a simple dll using gcc and cygwin. Something very similar to below used to work on dos and mingw but now Im geting loads of errors as gcc tries to compile some headers?! Below is my