Re: Shared library on MinGW

2006-03-14 Thread Bob Friesenhahn
On Wed, 15 Mar 2006, John Pye wrote: The code that loads the plugins is at the link below. It's really old, but I have been cleaning it up. On Windows the loading is done with LoadLibrary. But this doesn't matter! My problem is that GCC on MinGW won't let me compile my library with the unreso

Re: Shared library on MinGW

2006-03-14 Thread John Pye
Hi again, Ralf Wildenhues wrote: * John Pye wrote on Tue, Mar 14, 2006 at 02:18:04PM CET: Ralf Wildenhues wrote: * John Pye wrote on Tue, Mar 14, 2006 at 06:26:31AM CET: I just saw this thread and I have been experiencing similar problems. http://lists.gnu.org/archive/html/li

Re: Shared library on MinGW

2006-03-14 Thread Ralf Wildenhues
Hi John, * John Pye wrote on Tue, Mar 14, 2006 at 02:18:04PM CET: > Ralf Wildenhues wrote: > >* John Pye wrote on Tue, Mar 14, 2006 at 06:26:31AM CET: > > > >>I just saw this thread and I have been experiencing similar problems. > >>http://lists.gnu.org/archive/html/libtool/2006-03/msg00011.html >

Re: Shared library on MinGW

2006-03-14 Thread John Pye
Hi Ralf, Ralf Wildenhues wrote: Hi John, * John Pye wrote on Tue, Mar 14, 2006 at 06:26:31AM CET: I just saw this thread and I have been experiencing similar problems. http://lists.gnu.org/archive/html/libtool/2006-03/msg00011.html Well, if you have the same problem, then using `-no

Re: Shared library on MinGW

2006-03-14 Thread Ralf Wildenhues
Hi John, * John Pye wrote on Tue, Mar 14, 2006 at 06:26:31AM CET: > > I just saw this thread and I have been experiencing similar problems. > http://lists.gnu.org/archive/html/libtool/2006-03/msg00011.html Well, if you have the same problem, then using `-no-undefined' should fix it for you. ;-)

Shared library on MinGW

2006-03-13 Thread John Pye
Hi all, I just saw this thread and I have been experiencing similar problems. http://lists.gnu.org/archive/html/libtool/2006-03/msg00011.html What I'm doing is running a DLL (_ascend.dll) via Python (wrapped with SWIG). This DLL in turn needs to load some of its own DLLs for external plugin code.