From: khan AT xraylith DOT wisc DOT edu (Mumit Khan) Subject: Re: Another cygwin snapshot -- 981026 30 Oct 1998 09:32:50 -0800 Message-ID: References: <19981030114650 DOT A313 AT cygnus DOT com> Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII To: Christopher Faylor Cc: Geoffrey Noer , cygwin32-developers AT cygnus DOT com On Fri, 30 Oct 1998, Christopher Faylor wrote: > > The old "32" versions were deprecated not eliminated so this should, > theoretically, not be a problem. > Actually, in this case it is. The winsup file dll_entry.cc instantiates the macro DECLARE_CYGWIN_DLL, which instantiates _cygwin_dll_entry AT 12 not _cygwin32_dll_entry AT 12 I've referenced in both dlltool.c and dllwrap.c. It's not a big deal, only that people will have to explicitly specify ``--entry __cygwin_dll_entry AT 12'' each time instead of the default working for them when building a DLL. The entry point is not exported from cygwin.dll, so the new aliases for backward compatibility don't apply here. Mumit