Re: [Mingw-w64-public] [PATCH 2/2] crt: Move the strtof() function from libmingwex.a to libmsvcr*.a

2022-08-30 Thread Martin Storsjö
On Tue, 30 Aug 2022, LIU Hao wrote: 在 2022/8/29 04:45, Martin Storsjö 写道: This avoids using this function in UCRT builds and uses the UCRT's implementation instead - which should save some space by not statically linking in our implementation. In stdlib.h, we don't define __USE_MINGW_STRTOX

Re: [Mingw-w64-public] [PATCH 2/2] crt: Move the strtof() function from libmingwex.a to libmsvcr*.a

2022-08-30 Thread LIU Hao
在 2022/8/29 04:45, Martin Storsjö 写道: This avoids using this function in UCRT builds and uses the UCRT's implementation instead - which should save some space by not statically linking in our implementation. In stdlib.h, we don't define __USE_MINGW_STRTOX when targeting UCRT - with the intent

[Mingw-w64-public] [PATCH 2/2] crt: Move the strtof() function from libmingwex.a to libmsvcr*.a

2022-08-28 Thread Martin Storsjö
This avoids using this function in UCRT builds and uses the UCRT's implementation instead - which should save some space by not statically linking in our implementation. In stdlib.h, we don't define __USE_MINGW_STRTOX when targeting UCRT - with the intent that we'd use the CRT's implementation