I've been running beta2, and I noticed that class debugging isn't working. There was a discussion some time back about how class members weren't evaluated correctly in Win64, and it was said that it was fixed in master.
I was excited and patiently awaiting the release.

Can anyone who knows about this stuff comment?


On 14 July 2014 22:00, Dicebot via Digitalmars-d-announce <digitalmars-d-announce@puremagic.com> wrote:
On Monday, 14 July 2014 at 11:57:33 UTC, Dragos Carp wrote:

   LINUX
   ftp.digitalmars.com/dmd.2.066.0-b3.linux.zip

I think something got wrong on building the 2.066.0-b3. The sources from dmd.2.066.0-b3.linux.zip are not the same with the tagged version 2.066.0-b3 in git (for dmd at least).

For example:
unzipped dmd2.066-b3/src/dmd/nogc.c:65
        if (v && (v->storage_class & (STCmanifest | STCstatic)) == 0 && v->init)
git v2.066.0-b3 dmd/src/nogc.c:65
        if (v && !(v->storage_class & STCmanifest) && !v->isDataseg() && v->init)


Maybe you should rebuild this or simply ignore -b3 and create a -b4.

Because of improper tagging, testing actual binaries of -b3 makes no sense.

http://forum.dlang.org/post/yavpusxgxwgbaepctjty@forum.dlang.org