[Bug 39195] msvcr120.dll.nextafter is needed by Sonkwo

wine-bugs at winehq.org wine-bugs at winehq.org
Fri Dec 18 21:00:39 CST 2015


https://bugs.winehq.org/show_bug.cgi?id=39195

--- Comment #10 from YongHao Hu <christopherwuy at gmail.com> ---
(In reply to Nikolay Sivov from comment #7)
> I don't think it's a hack, msvcr120 have such exports on both arches. I
> don't see a problem in enabling this code in msvcrt for i386 case.

Hi, I prefer #if defined(__x86_64__) || defined(__arm__) || _MSVCR_VER>=120.
And Wine had used this method in MSVCRT__chgsignf function.
How do you think about that? Thank you.

#if defined(__x86_64__) || defined(__arm__) || _MSVCR_VER>=120

/*********************************************************************
 *      _chgsignf (MSVCRT.@)
 */
float CDECL MSVCRT__chgsignf( float num )
{
    /* FIXME: +-infinity,Nan not tested */
    return -num;
}

-- 
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.



More information about the wine-bugs mailing list