Re: core.stdc.fenv on Win64

2014-07-17 Thread Walter Bright via Digitalmars-d
On 7/16/2014 3:42 PM, Trass3r wrote: The implementation doesn't seem to be correct. Could anybody versed in this look into it? version(Windows) { private extern __gshared fenv_t _FE_DFL_ENV; fenv_t* FE_DFL_ENV = _FE_DFL_ENV; } There's no such symbol in the libcmt and it fails to

core.stdc.fenv on Win64

2014-07-16 Thread Trass3r via Digitalmars-d
The implementation doesn't seem to be correct. Could anybody versed in this look into it? version(Windows) { private extern __gshared fenv_t _FE_DFL_ENV; fenv_t* FE_DFL_ENV = _FE_DFL_ENV; } There's no such symbol in the libcmt and it fails to link.