On 2015-06-06 23:24, Atila Neves wrote:

I don't think I understand. Where would these object files come from
unless you're doing per-module compilation, C-style?

What I've already implemented is variant 1 mentioned before.

If you compile multiple files with DMD without linking it will produce multiple object files:

$ ls
bar.d foo.d
$ dmd -c bar.d foo.d
$ ls
bar.d bar.o foo.d foo.o

--
/Jacob Carlborg

Reply via email to