> "Elfyn McBratney" <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
> > >     I think I'm making marvelous progress.  Unfortunately, I'm getting
> an
> > > error that doesn't make sense:
> > >
> > > $g++ -shared -mno-cygwin -o dllhello.dll dllhello.o
> > > other.dll -Wl,--out-implib,libdllhello.a -Wl,--enable-stdcall-fixup
> > > Creating library file: libdllhello.a
> > > dllhello.o(.text+0x164):dllhello.C: undefined reference to [EMAIL PROTECTED]'
> > >
> > > In my source code, the offending call is:
> > >
> > > extern "C" PASCAL void InitAPI( int handle );
> >
> >
> > Does dllhello.c include a header containing the prototype of InitAPI or
> have
> > a declaration of InitAPI? I think that's the gotcha.
> >
> >
> > Regards,
> >
> > Elfyn McBratney
> > [EMAIL PROTECTED]
> > www.exposure.org.uk
>
> Both the extern prototype and the function call are in dllhello.C.  Thus
it
> does see the prototype.  As a further note and after further testing, if I
> use implib on other.dll, I get the export list.  If I add an alias in the
> .def file
>
> [EMAIL PROTECTED]
> [EMAIL PROTECTED]
>
> then use dlltool to create the library, I can link against that library
> successfully.
>
> So it seems clear that --enable-stdcall-fixup isn't working as advertised.
>
> Any idea why?
>
> Wil

What if you change the ordering, to say

extern "C" void PASCAL InitAPI( int handle );

? Or use __stdcall instead of PASCAL ?


Regards,

Elfyn McBratney
[EMAIL PROTECTED]
www.exposure.org.uk



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

Reply via email to