Re: 1.15.19 dlopen() dies with no dlerror()

2006-05-24 Thread Larry Hall (Cygwin)
Jim Kleckner wrote: Larry Hall (Cygwin) wrote: Jim Kleckner wrote: Larry Hall (Cygwin) wrote: Jim Kleckner wrote: Jim Kleckner wrote: Michael McKerns wrote: Yes, yes... I've not given you enough information... ... See: http://cygwin.com/cygwin-ug-net/dll.html http://cygwin.com/faq.html

Re: 1.15.19 dlopen() dies with no dlerror()

2006-05-23 Thread Jim Kleckner
Larry Hall (Cygwin) wrote: Jim Kleckner wrote: Larry Hall (Cygwin) wrote: Jim Kleckner wrote: Jim Kleckner wrote: Michael McKerns wrote: Yes, yes... I've not given you enough information... ... See: http://cygwin.com/cygwin-ug-net/dll.html http://cygwin.com/faq.html#faq.programming.dll-

Re: 1.15.19 dlopen() dies with no dlerror()

2006-05-23 Thread Larry Hall (Cygwin)
Jim Kleckner wrote: Larry Hall (Cygwin) wrote: Jim Kleckner wrote: Jim Kleckner wrote: Michael McKerns wrote: Yes, yes... I've not given you enough information... ... See: http://cygwin.com/cygwin-ug-net/dll.html http://cygwin.com/faq.html#faq.programming.dll-relocatable I'm seeing a si

Re: 1.15.19 dlopen() dies with no dlerror()

2006-05-23 Thread Jim Kleckner
Larry Hall (Cygwin) wrote: Jim Kleckner wrote: Jim Kleckner wrote: Michael McKerns wrote: Yes, yes... I've not given you enough information... ... See: http://cygwin.com/cygwin-ug-net/dll.html http://cygwin.com/faq.html#faq.programming.dll-relocatable I'm seeing a similar problem with py

Re: 1.15.19 dlopen() dies with no dlerror()

2006-05-23 Thread Larry Hall (Cygwin)
Jim Kleckner wrote: Jim Kleckner wrote: Michael McKerns wrote: Yes, yes... I've not given you enough information... ... See: http://cygwin.com/cygwin-ug-net/dll.html http://cygwin.com/faq.html#faq.programming.dll-relocatable I'm seeing a similar problem with python and 1.5.19 and also tried

Re: 1.15.19 dlopen() dies with no dlerror()

2006-05-23 Thread Jim Kleckner
Jim Kleckner wrote: Michael McKerns wrote: Yes, yes... I've not given you enough information... ... See: http://cygwin.com/cygwin-ug-net/dll.html http://cygwin.com/faq.html#faq.programming.dll-relocatable I'm seeing a similar problem with python and 1.5.19 and also tried the snapshot of 22-

Re: 1.15.19 dlopen() dies with no dlerror()

2006-05-22 Thread Jim Kleckner
Michael McKerns wrote: Yes, yes... I've not given you enough information... $ uname -a CYGWIN_NT-5.1 turro 1.5.19<0.150/4/2) 2006-01-20 13:38 i686 Cygwin Also the file I attached needs to inspect a .dll that is built with the procedure that I described in the first part of the message. So w

Re: 1.15.19 dlopen() dies with no dlerror()

2006-04-11 Thread Christopher Faylor
On Tue, Apr 11, 2006 at 02:21:08PM -0700, Michael McKerns wrote: >Yes, yes... I've not given you enough information... >... >I'm using the standard cygwin syntax for building dll's, but I'm useing >the raw code that's inside dlltool. > >See: http://cygwin.com/cygwin-ug-net/dll.html >http://cygwin.

Re: 1.15.19 dlopen() dies with no dlerror()

2006-04-11 Thread Michael McKerns
Yes, yes... I've not given you enough information... $ uname -a CYGWIN_NT-5.1 turro 1.5.19<0.150/4/2) 2006-01-20 13:38 i686 Cygwin Also the file I attached needs to inspect a .dll that is built with the procedure that I described in the first part of the message. So when you got "No such file o

Re: 1.15.19 dlopen() dies with no dlerror()

2006-04-11 Thread Christopher Faylor
On Tue, Apr 11, 2006 at 01:22:39PM -0700, Michael McKerns wrote: >I've been using the following Makefile syntax with building cygwin >applications: > >$(PROJ_DLL) $(PROJ_SAR): product_dirs $(PROJ_OBJS) > $(CXX) $(LCXX_SARFLAGS) -Wl,--out-implib=$(PROJ_SAR) \ > -o $(PROJ_DLL) $(PROJ_OBJS

1.15.19 dlopen() dies with no dlerror()

2006-04-11 Thread Michael McKerns
I've been using the following Makefile syntax with building cygwin applications: $(PROJ_DLL) $(PROJ_SAR): product_dirs $(PROJ_OBJS) $(CXX) $(LCXX_SARFLAGS) -Wl,--out-implib=$(PROJ_SAR) \ -o $(PROJ_DLL) $(PROJ_OBJS) $(LCXXFLAGS) This is exactly what is in the cygwin documentation,