DMD 1.00 - here it is!

Ary Manzana ary at esperanto.org.ar
Wed Jan 3 04:34:16 PST 2007


Walter Bright escribió:
> 
> 
> http://www.digitalmars.com/d/changelog.html
> 
> http://ftp.digitalmars.com/dmd.1.00.zip

Greeeaaat!!!

Thanks for outputing the imports on the -v flag. It will make some 
things really much more easier.

However, I tried compiling this file with "dmd -v main.d":

main.d
------
# import std.stdio;
# import a;
#
# void main() { }

(a.d contains "module a;")

and I get this in the output:

c:\dmd\programas>dmd -v main.d
 > parse     main
 > semantic  main
 > semantic2 main
 > semantic3 main
 > code      main
 > generating code for function 'main'
 > c:\dmd\dmd\bin\..\..\dm\bin\link.exe main,,,user32+kernel32/noi;

The imports are not getting printed. Am I doing something wrong?

I also tried compiling with "dmd -v -v1 main.d" and the same happens. 
BTW, what is the "v1" for?

Thanks,
Ary



More information about the Digitalmars-d-announce mailing list