Compile Times on Windows
zebrazebra via Digitalmars-d
digitalmars-d at puremagic.com
Sat May 9 00:37:51 PDT 2015
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 at 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 at 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 at ZEBRA:~/personal/d ]
$ which dmd
/c/D/dmd2/windows/bin/dmd
[Sat May 09 00:32:29 zebra at ZEBRA:~/personal/d ]
$ time dmd hello.d
real 0m4.243s
user 0m0.015s
sys 0m0.031s
[Sat May 09 00:35:00 zebra at ZEBRA:~/personal/d ]
$ time gdc hello.d
real 0m12.301s
user 0m0.015s
sys 0m0.030s
More information about the Digitalmars-d
mailing list