c++.announce - DM C/C++ 8.46
- Walter Bright (2/2) Jan 14 2006 D users will be interested in the updated import libraries and uuid.lib.
- David Medlock (4/8) Jan 15 2006 The link for the CD upgrade is missing:
- tyro[a.c.edwards] (3/11) Jan 15 2006 This version of the. compiler is missing from the ftp site. Lastest vers...
- Walter Bright (1/1) Jan 15 2006 Fixed.
- Jerry van Dijk (7/8) Jan 16 2006 Actually, the CD update (cd846.zip) is still missing.
- Don Clugston (22/25) Jan 16 2006 Thanks, Walter.
- Hakki Dogusan (11/18) Jan 23 2006 Using cd847.
-
Walter Bright
(4/10)
Jan 23 2006
Just the usual
: - Hakki Dogusan (8/31) Jan 25 2006 I tried a little "the usual way", not succedeed.
D users will be interested in the updated import libraries and uuid.lib. http://www.digitalmars.com/changelog.html
Jan 14 2006
Walter Bright wrote:D users will be interested in the updated import libraries and uuid.lib. http://www.digitalmars.com/changelog.htmlThe link for the CD upgrade is missing: http://www.digitalmars.com/download/freecompiler.html -DavidM
Jan 15 2006
In article <dqdi4s$n10$1 digitaldaemon.com>, David Medlock says...Walter Bright wrote:This version of the. compiler is missing from the ftp site. Lastest version available is still 8.45.D users will be interested in the updated import libraries and uuid.lib. http://www.digitalmars.com/changelog.htmlThe link for the CD upgrade is missing: http://www.digitalmars.com/download/freecompiler.html -DavidM
Jan 15 2006
Fixed.Actually, the CD update (cd846.zip) is still missing. -- -- Jerry van Dijk -- Leiden, Holland -- -- In case of headache, follow the instructions on the aspirin bottle: -- "Take two tablets" and "Keep away from children".
Jan 16 2006
Walter Bright wrote:D users will be interested in the updated import libraries and uuid.lib. http://www.digitalmars.com/changelog.htmlThanks, Walter. Unfortunately, the tgamma() function is still not completely right, in both DMC and DMD. It's only really accurate to double precision. Interestingly, lgamma() is correct. With the version of tgamma I've included in dsource.org in mathextra/etcgamma, the following test passes: const real SQRT_PI = 1.77245385090551602729816748334114518279754945612238L; assert(feqrel(etcgamma.tgamma(0.5L), SQRT_PI) == real.mant_dig); (ie, it is corect to the full 64 bits at this point!) but assert(feqrel(std.math.tgamma(0.5L), SQRT_PI) == real.mant_dig); fails -- it is correct to "only" 56 bits. I wonder if there's an inadvertant conversion to 'double' in there somewhere? There's a certain amount of black humour in this -- it is *much* easier to get this stuff right in D, than in C. I think you should consider implementing the C library in D, rather than vice-versa <g>. Seriously, with the known problems with NaNs in most C++ compilers, and the lack of accuracy guarantees in the C math functions, in the longer term, D is likely to better off minimising its dependence on C. If pow() is often implemented incorrectly, there's no chance with anything more complicated.
Jan 16 2006
Hi, Walter Bright wrote:D users will be interested in the updated import libraries and uuid.lib. http://www.digitalmars.com/changelog.htmlUsing cd847. I'm getting "Internal error: cod2 4221". - this specific file was compiling with cd845 (although was taking too much time to compile) - debug compiling is ok Any hints? -- Regards, Hakki Dogusan
Jan 23 2006
"Hakki Dogusan" <dogusanh tr.net> wrote in message news:dr2e3i$20iu$1 digitaldaemon.com...Using cd847. I'm getting "Internal error: cod2 4221". - this specific file was compiling with cd845 (although was taking too much time to compile) - debug compiling is ok Any hints?Just the usual <g>: http://www.digitalmars.com/bugs.html
Jan 23 2006
Hi, Walter Bright wrote:"Hakki Dogusan" <dogusanh tr.net> wrote in message news:dr2e3i$20iu$1 digitaldaemon.com...I tried a little "the usual way", not succedeed. Then changed compile switch from "-o+space" to "-o" and problem is solved! -- Regards, Hakki DogusanUsing cd847. I'm getting "Internal error: cod2 4221". - this specific file was compiling with cd845 (although was taking too much time to compile) - debug compiling is ok Any hints?Just the usual <g>: http://www.digitalmars.com/bugs.html
Jan 25 2006