Using rdmd to create shared object files

2015-08-02 Thread via Digitalmars-d-learn
Hello, I am trying to use rdmd to create shared object files. The command that I am using is "rdmd --build-only -shared -fPIC -defaultlib= foo.d" This creates a file called "foo" - wich is not exactly what I expectd. However "dmd -shared -fPIC -defaultlib= foo.d " creates a file called "foo

Re: Using rdmd to create shared object files

2015-08-05 Thread cym13 via Digitalmars-d-learn
On Sunday, 2 August 2015 at 19:04:15 UTC, Malte Kießling wrote: Hello, I am trying to use rdmd to create shared object files. The command that I am using is "rdmd --build-only -shared -fPIC -defaultlib= foo.d" This creates a file called "foo" - wich is not exactly what I expectd. However "d