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.
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