digitalmars.D.learn - Where do you get implib
- Jesse Phillips (2/2) Nov 04 2011 From what I gather, if you have a DLL to link, you can use implib to bui...
- Johannes Pfau (7/14) Nov 04 2011 On http://www.digitalmars.com/download/freecompiler.html
- Jesse Phillips (2/21) Nov 04 2011 Yes thank you.
- Nestor (5/8) Jan 29 2017 I just tried implib with latest sqlite library def (windows x86)
From what I gather, if you have a DLL to link, you can use implib to build a static library that will do the linking for you. My research suggests that everyone already has it, and may even come with Windows. But I don't seem to have it. Where do you get it. I found coffimplib to do conversion on DigitalMars's tools along with documentation on using implib, but I don't see where you would actually get implib.
Nov 04 2011
Jesse Phillips wrote:From what I gather, if you have a DLL to link, you can use implib to build a static library that will do the linking for you. My research suggests that everyone already has it, and may even come with Windows. But I don't seem to have it. Where do you get it. I found coffimplib to do conversion on DigitalMars's tools along with documentation on using implib, but I don't see where you would actually get implib.On http://www.digitalmars.com/download/freecompiler.html there's a link to this file: http://ftp.digitalmars.com/bup.zip I think that's the implib you want? -- Johannes Pfau
Nov 04 2011
Johannes Pfau Wrote:Jesse Phillips wrote:Yes thank you.From what I gather, if you have a DLL to link, you can use implib to build a static library that will do the linking for you. My research suggests that everyone already has it, and may even come with Windows. But I don't seem to have it. Where do you get it. I found coffimplib to do conversion on DigitalMars's tools along with documentation on using implib, but I don't see where you would actually get implib.On http://www.digitalmars.com/download/freecompiler.html there's a link to this file: http://ftp.digitalmars.com/bup.zip I think that's the implib you want? -- Johannes Pfau
Nov 04 2011
On Friday, 4 November 2011 at 16:31:30 UTC, Johannes Pfau wrote:On http://www.digitalmars.com/download/freecompiler.html there's a link to this file: http://ftp.digitalmars.com/bup.zip I think that's the implib you want?I just tried implib with latest sqlite library def (windows x86) like this, and it crashed (however with the dll it seems to work just fine): implib sqlite3.lib sqlite3.def
Jan 29 2017