digitalmars.D.learn - DLL symbol export with Bud & Tango
- Alex <CppCoder gmail.com> Sep 20 2007
- Alex <CppCoder gmail.com> Sep 20 2007
- BCS <ao pathlink.com> Sep 20 2007
- Derek Parnell <derek psych.ward> Sep 20 2007
I'm currently working on a very simply DLL library, which I'm compiling against tango by way of the build utility (bud). I've got a symbol I'm exporting via a definition file, but whenever I try to compile the app, bud deletes it and does not export the symbol. What am I doing wrong? command line for reference: bud main.d main.def kernel32.lib
Sep 20 2007
Sorry, I should added that bud deletes my definition file only when I run it with the -clean directive
Sep 20 2007
Reply to alex,Sorry, I should added that bud deletes my definition file only when I run it with the -clean directive
I think, rather than use a .def file, you should use the "export " keyword like this export int fn(){...} but then I have never created a DLL.
Sep 20 2007
On Thu, 20 Sep 2007 16:54:55 -0400, Alex wrote:I'm currently working on a very simply DLL library, which I'm compiling against tango by way of the build utility (bud). I've got a symbol I'm exporting via a definition file, but whenever I try to compile the app, bud deletes it and does not export the symbol. What am I doing wrong? command line for reference: bud main.d main.def kernel32.lib
The problem is that it has the same name as the target exe. Try renaming it. bud main.d export.def kernel32.lib -- Derek Parnell Melbourne, Australia skype: derek.j.parnell
Sep 20 2007









BCS <ao pathlink.com> 