You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't know if this should be considered as a problem, but this little program:
import std.net.curl;
void main() {}
in some cases takes a long time to compile:
Compilation times, seconds:
<noswitches>: 1.17
-O -inline -release: 1.40
-O -inline -noboundscheck: 1.42
-noboundscheck -release: 1.14
-inline -noboundscheck -release: 6.34
-O -inline -noboundscheck -release: 23.53
The text was updated successfully, but these errors were encountered:
(In reply to hsteoh from comment #1)
> Does this still happen? On git HEAD (Linux/64) it compiles within 1-2> seconds for me.
On the same system (Windows 32 bit) with -O -inline -noboundscheck -release dmd 2.067alpha takes about 5 seconds (and 420 MB RAM, that is a lot for such program), so the timing is much better.
bearophile_hugs reported this on 2013-04-26T09:42:32Z
Transferred from https://issues.dlang.org/show_bug.cgi?id=9995
CC List
Description
I don't know if this should be considered as a problem, but this little program: import std.net.curl; void main() {} in some cases takes a long time to compile: Compilation times, seconds: <no switches>: 1.17 -O -inline -release: 1.40 -O -inline -noboundscheck: 1.42 -noboundscheck -release: 1.14 -inline -noboundscheck -release: 6.34 -O -inline -noboundscheck -release: 23.53The text was updated successfully, but these errors were encountered: