Re: Compiling a shared library

2011-01-14 Thread Jacob Carlborg
On 2011-01-14 09:49, Mandeep Singh Brar wrote: Hi, I read on this website that it is possible to create shared libraries on linux using dmd. Is that correct? I am trying to compile the following code: module testPlugin; import std.stdio; export class testPlugin { export void testMetho

Re: Compiling a shared library

2011-01-14 Thread Jonathan M Davis
On Friday 14 January 2011 00:49:12 Mandeep Singh Brar wrote: > Hi, > > I read on this website that it is possible to create shared libraries on > linux using dmd. Is that correct? > I am trying to compile the following code: > > module testPlugin; > import std.stdio; > > export class testPlugin

Compiling a shared library

2011-01-14 Thread Mandeep Singh Brar
Hi, I read on this website that it is possible to create shared libraries on linux using dmd. Is that correct? I am trying to compile the following code: module testPlugin; import std.stdio; export class testPlugin { export void testMethod() { writeln("This is method fro