[Mingw-w64-public] bug #864: _ftelli64 returns wrong values with MinGW-w64 32-bit

2022-06-05 Thread Ozkan Sezer
This is a curious one: https://sourceforge.net/p/mingw-w64/bugs/864/ -- O.S. ___ Mingw-w64-public mailing list Mingw-w64-public@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/mingw-w64-public

Re: [Mingw-w64-public] [PATCH 2/2] headers: Use the SEH based setjmp on ARM too, if __SEH__ is defined

2022-06-05 Thread Martin Storsjö
On Sat, 4 Jun 2022, LIU Hao wrote: 在 2022-06-02 18:28, Martin Storsjö 写道: Signed-off-by: Martin Storsjö --- The latest LLVM from git supports generating SEH unwind info on ARM; it's not yet the default, but the default will be switched from dwarf to SEH once all relevant support patches have l

Re: [Mingw-w64-public] lrint on x64

2022-06-05 Thread Martin Storsjö
On Sun, 5 Jun 2022, Ozkan Sezer wrote: On 6/5/22, LIU Hao wrote: 在 2022-06-05 19:30, Ozkan Sezer 写道: On 6/5/22, LIU Hao wrote: 在 2022-06-03 22:03, Ozkan Sezer 写道: A quick x64 build ran under win10 yielded the same results. As far as I can tell, `CVTSD2SI` should be preferred to `FISTP`

Re: [Mingw-w64-public] [PATCH] headers/crt: Add tmpfile_s delcaration

2022-06-05 Thread LIU Hao
在 2022-06-02 20:27, Biswapriyo Nath 写道: From d026a9f2a04647d1ca6f2a9c6fea0eb83b0f348b Mon Sep 17 00:00:00 2001 From: Biswapriyo Nath Date: Thu, 2 Jun 2022 17:55:17 +0530 Subject: [PATCH] headers/crt: Add tmpfile_s delcaration Required for google/nsync project Signed-off-by: Biswapriyo Nath ---

Re: [Mingw-w64-public] lrint on x64

2022-06-05 Thread Ozkan Sezer
On 6/5/22, LIU Hao wrote: > 在 2022-06-05 19:30, Ozkan Sezer 写道: >> On 6/5/22, LIU Hao wrote: >>> 在 2022-06-03 22:03, Ozkan Sezer 写道: A quick x64 build ran under win10 yielded the same results. >>> >>> As far as I can tell, `CVTSD2SI` should be preferred to `FISTP` for >>> `float` >

Re: [Mingw-w64-public] lrint on x64

2022-06-05 Thread LIU Hao
在 2022-06-05 19:30, Ozkan Sezer 写道: On 6/5/22, LIU Hao wrote: 在 2022-06-03 22:03, Ozkan Sezer 写道: A quick x64 build ran under win10 yielded the same results. As far as I can tell, `CVTSD2SI` should be preferred to `FISTP` for `float` and `double`. The X87 implementation was added in 2007 a

Re: [Mingw-w64-public] lrint on x64

2022-06-05 Thread Ozkan Sezer
On 6/5/22, LIU Hao wrote: > 在 2022-06-03 22:03, Ozkan Sezer 写道: >> >> A quick x64 build ran under win10 yielded the same results. >> > > As far as I can tell, `CVTSD2SI` should be preferred to `FISTP` for `float` > and `double`. The X87 > implementation was added in 2007 and has not been updated s

Re: [Mingw-w64-public] [PATCH] crt: Add new APIs in hyperv import libs

2022-06-05 Thread LIU Hao
在 2022-06-04 20:10, Biswapriyo Nath 写道: From eec8a361aac3e2c5d217168efa88647fd9f0e1a1 Mon Sep 17 00:00:00 2001 From: Biswapriyo Nath Date: Sat, 4 Jun 2022 17:37:31 +0530 Subject: [PATCH] crt: Add new APIs in hyperv import libs Signed-off-by: Biswapriyo Nath --- mingw-w64-crt/lib-common/comput

Re: [Mingw-w64-public] lrint on x64

2022-06-05 Thread LIU Hao
在 2022-06-03 22:03, Ozkan Sezer 写道: A quick x64 build ran under win10 yielded the same results. As far as I can tell, `CVTSD2SI` should be preferred to `FISTP` for `float` and `double`. The X87 implementation was added in 2007 and has not been updated since ever. -- Best regards, LIU Hao