[Fwd: Re: How to make g++ link with QT (a microsoft compatible library) on x86]

2002-01-22 Thread Pavel Tsekov
=ccj00) by duck.doc.ic.ac.uk with smtp (Exim 3.16 #7) id 16SkOs-00036t-00 for [EMAIL PROTECTED]; Mon, 21 Jan 2002 19:46:38 + Content-Type: text/plain; charset="iso-8859-1" From: Christopher January <[EMAIL PROTECTED]> To: Pavel Tsekov <[EMAIL PROTECTED]> Subject: Re:

RE: How to make g++ link with QT (a microsoft compatible library) on x86

2002-01-21 Thread Ralf Habacker
> > Hi > Is there a g++ switch for linking with foreign libraries? > > Under Windows 2000, using g++, I am trying to link with QT, > which is released only for Microsoft Visual C++. > I get the error-messages shown below. Supposing this caused by > incompatibilities between g++ and Visual C I am

Re: How to make g++ link with QT (a microsoft compatible library) on x86

2002-01-21 Thread Pavel Tsekov
Yep - this is the expected behavior! :) GNU g++ and MSVC use different (incompatible) naming schemes to describe symbols in C++ classes, thus the GNU linker cannot find the appropriate symbol name for the QT symbols when linking against MSVC compiled QT. Torben Neesgaard wrote: > Hi > Is there a