Re: simple newbie question

2015-11-22 Thread Adam D. Ruppe via Digitalmars-d-learn
On Sunday, 22 November 2015 at 09:41:42 UTC, fred wrote: So why most d library still static link. It generally results in smaller and faster distributions and less hassle for the typical D use case today.

Re: simple newbie question

2015-11-22 Thread Adam D. Ruppe via Digitalmars-d-learn
On Sunday, 22 November 2015 at 09:55:10 UTC, fred wrote: How to generate temporary files so compilation time speeds up. Normal compilation only produce obj, exe. If what i mean is that if we compile the files that unchanged, dmd will look for that temporary files instead of .d files. The .d

simple newbie question

2015-11-22 Thread fred via Digitalmars-d-learn
How to generate temporary files so compilation time speeds up. Normal compilation only produce obj, exe. If what i mean is that if we compile the files that unchanged, dmd will look for that temporary files instead of .d files.

simple newbie question

2015-11-22 Thread fred via Digitalmars-d-learn
Hi. Dll or shared library is important feature of software development. So why most d library still static link. I am sorry for my stupid question. Thanks.