Re: Conflict between libcygwin.a and GCC core libraries

2002-11-20 Thread Markus Gerwinski
Max Bowsher wrote: > You are mixing the Cygwin and MinGW environments. This *will not work*. The > thing you are trying to compile does not appear to have been ported to allow > it to run on native Windows, and to run it on Cygwin would require a > Cygwin-compiled gtk+, which is a whole new can of

Re: Conflict between libcygwin.a and GCC core libraries

2002-11-20 Thread Max Bowsher
> >Subject: Re: Conflict between libcygwin.a and GCC core libraries > From: Markus Gerwinski <[EMAIL PROTECTED]> > Date: Wed, 20 Nov 2002 10:36:14 +0100 > To: [EMAIL PROTECTED] > >Max Bowsher wrote: >> Actually, pipe and kill might not be. Don't kn

Re: Conflict between libcygwin.a and GCC core libraries

2002-11-20 Thread Markus Gerwinski
Max Bowsher wrote: > Actually, pipe and kill might not be. Don't know. You'd have to look and > find out. Well, the undefined references to pipe and kill were "solved" by linking one of the "forbidden" libraries (-lcygwin, -lc, -lg...), so it seems there are at least dummy implementations, or do I

Re: Conflict between libcygwin.a and GCC core libraries

2002-11-19 Thread Max Bowsher
Markus Gerwinski <[EMAIL PROTECTED]> wrote: > Max Bowsher wrote: In short the error messages say, I get 'undefined reference's to QUITE a lot of functions, among them some essential gcc functions like __assert, __errno, pipe, kill, fork etc. >> 'fork' isn't available under MinGW. >

Re: Conflict between libcygwin.a and GCC core libraries

2002-11-19 Thread Markus Gerwinski
Max Bowsher wrote: > >> In short the error messages say, I get 'undefined reference's to > >> QUITE a lot of functions, among them some essential gcc functions > >> like __assert, __errno, pipe, kill, fork etc. > 'fork' isn't available under MinGW. Good to know... Anyway, the other ones should be

Re: Conflict between libcygwin.a and GCC core libraries

2002-11-19 Thread Max Bowsher
Markus Gerwinski <[EMAIL PROTECTED]> wrote: >> Max Bowsher wrote: >>> Post details of the errors with -mno-cygwin but without -lcygwin. >> >> Okay. The full compiler call is attached in file log1, the error >> message in log2. It's everything left from the whole output of >> 'make'; all other job

Re: Conflict between libcygwin.a and GCC core libraries

2002-11-19 Thread Markus Gerwinski
Max Bowsher wrote: > Post details of the errors with -mno-cygwin but without -lcygwin. Okay. The full compiler call is attached in file log1, the error message in log2. It's everything left from the whole output of 'make'; all other jobs have already run fine. In short the error messages say, I g

Re: Conflict between libcygwin.a and GCC core libraries

2002-11-19 Thread Max Bowsher
Markus Gerwinski <[EMAIL PROTECTED]> wrote: > To be honest, as long as I end up with a runnable gpa.exe for > Windows, I dont' care... I gave it a try using Cygwin. > >> If Cygwin, drop the -mno-cygwin. > > Then GTK+-2.0 refuses to link. Ahh. You will need to use the same setting as your gtk+ w

Re: Conflict between libcygwin.a and GCC core libraries

2002-11-19 Thread Markus Gerwinski
Max Bowsher wrote: > > After changing some more stuff in the makefiles, compiling runs fine now, > > but linking still causes trouble. First, I got a lot of `undefined > > references' to functions as basic as `__assert'. To get rid of them, I > > included "-lcygwin" by hand into the linker options.

Re: Conflict between libcygwin.a and GCC core libraries

2002-11-19 Thread Max Bowsher
Markus Gerwinski <[EMAIL PROTECTED]> wrote: > I'm currently trying to compile GPA (s. > http://www.gnupg.org/gpa.html) on Cygwin. To get it up and running, > first of all I had to insert "-mno-cygwin > -mms-bitfields" into the compiler options. If you add -mno-cygwin, then you are trying to compil

Conflict between libcygwin.a and GCC core libraries

2002-11-19 Thread Markus Gerwinski
Hi folks, I'm currently trying to compile GPA (s. http://www.gnupg.org/gpa.html) on Cygwin. To get it up and running, first of all I had to insert "-mno-cygwin -mms-bitfields" into the compiler options. After changing some more stuff in the makefiles, compiling runs fine now, but linking still cau