This is the mail archive of the
cygwin@cygwin.com
mailing list for the Cygwin project.
Re: DLL Win 2000
- To: "Asbenson, Lyndell L" <lyndell dot l dot asbenson at intel dot com>
- Subject: Re: DLL Win 2000
- From: Charles Wilson <cwilson at ece dot gatech dot edu>
- Date: Sat, 29 Sep 2001 17:51:59 -0400
- CC: "'cygwin at cygwin dot com'" <cygwin at cygwin dot com>
- References: <31A90D7E3560D511AC7400A0C96B2730012BF294@fmsmsx59.fm.intel.com>
Asbenson, Lyndell L wrote:
> I have national instruments drivers for a GPIB device and all that they
> offer
> is DLLs and Language interfaces for Borland C++ or Microsoft C++. I have
> also
> look at your DLL conversion process 5 steeps. Is there any tool that will
> convert a DLL 32 bit to a static library where I could use this in the
> Cygwin
> environment?
Sort of. You can create an gcc-style import library for the DLL (search
for help/docu on 'dlltool' for more information). This import lib will
work with both cygwin's gcc and with mingw's gcc.
However, the odds are that any code you write must be compiled with the
'gcc -mno-cygwin' option of cygwin's compiler, or you should just use
the mingw compiler. The reason for this is that the NI DLL *probably*
was built to depend on msvcrt.dll, not cygwin1.dll. Since both of these
provide runtime services - and you can only have one runtime lib for a
given app - your app will also have to be linked against msvcrt.dll (not
cygwin1.dll) Ergo, -mno-cygwin (or just use mingw comiler, not cygwin
compiler). You can check the dependencies of your NI DLL thus:
cygcheck my_ni_dll.dll
--Chuck
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/