Wondering what is the average compile time users face on Wdinows
is. I just downloaded dmd today to start learning some d and it
takes 5 seconds for me to compile a simple "hello, world".
Wondering if I have something messed up?

My laptop is Windows laptop, Win 8.1, 4th gen i7 intel processor
and plenty of rAM.

[Sat May 09 00:32:20 zebra@ZEBRA:~/personal/d ]
$ cat hello.d
#!/usr/bin/env rdmd
import std.stdio;
void main() {
          writeln("Hello, world!");
}[Sat May 09 00:32:23 zebra@ZEBRA:~/personal/d ]
$ dmd --version
DMD32 D Compiler v2.067.1
Copyright (c) 1999-2014 by Digital Mars written by Walter Bright
[Sat May 09 00:32:27 zebra@ZEBRA:~/personal/d ]
$ which dmd
/c/D/dmd2/windows/bin/dmd
[Sat May 09 00:32:29 zebra@ZEBRA:~/personal/d ]
$ time dmd hello.d

real    0m4.243s
user    0m0.015s
sys     0m0.031s
[Sat May 09 00:35:00 zebra@ZEBRA:~/personal/d ]
$ time gdc hello.d

real    0m12.301s
user    0m0.015s
sys     0m0.030s

Reply via email to