Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm
List-Unsubscribe: <mailto:cygwin-unsubscribe-archive-cygwin=delorie.com@sourceware.cygnus.com>
List-Subscribe: <mailto:cygwin-subscribe@sourceware.cygnus.com>
List-Archive: <http://sourceware.cygnus.com/ml/cygwin/>
List-Post: <mailto:cygwin@sourceware.cygnus.com>
List-Help: <mailto:cygwin-help@sourceware.cygnus.com>,
	<http://sourceware.cygnus.com/ml/#faqs>
Sender: cygwin-owner@sourceware.cygnus.com
Delivered-To: mailing list cygwin@sourceware.cygnus.com
Message-Id: <199908270607.BAA19755@mercury.xraylith.wisc.edu>
To: Paul Sokolovsky <paul-ml@is.lg.ua>
cc: Anders Norlander <anorland@hem2.passagen.se>,
        James Stern <jsternitg@yahoo.com>, cygwin@sourceware.cygnus.com
Subject: Re: Re[4]: Importing a variable from a DLL 
In-Reply-To: Your message of "Thu, 26 Aug 1999 18:02:13 +0300."
             <13751.990826@is.lg.ua> 
Date: Fri, 27 Aug 1999 01:07:57 -0500
From: Mumit Khan <khan@xraylith.wisc.EDU>

Paul Sokolovsky <paul-ml@is.lg.ua> writes:
> 
>     I am still feeling misunderstood. Let me go with it once again,
> with examples.
> 
>     So, dlltool has ability to create implib from def - it's all nice
> with it, it supports DATA, sure.

No, no, I do get your point. And, it's a very good one that I had 
ignored earlier in this thread.

I'm currently adding changes to GCC so that exported data items have
the correct "data" tag in the .drectve section. This will enable us 
to handle this in dlltool and dllwrap when the import libraries are 
created. I'll hopefully test the gcc and dlltool changes this weekend
(it's pretty trivial).

With this change, you can do the following:
  
  /* dll file. */
  __declspec(dllexport) int exported_var;
  __declspec(dllexport) void exported_fund () { }
  /* end dll file. */

  $ gcc -c dll.c
  $ dllwrap -o foo.dll --output-lib libfoo.a dll.o

Now the import library will have what Paul suggests.

Regards,
Mumit


--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

