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 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 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 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 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.

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