Re: [PATCH] libstdc++: Fix libstdc++ build on some targets [PR107811]

2022-11-23 Thread Jonathan Wakely via Gcc-patches
On Wed, 23 Nov 2022 at 08:55, Jakub Jelinek wrote: > > Hi! > > fast_float library relies on size_t being 32-bit or larger and float/double > being IEEE single/double. Otherwise we only use strtod/strtof. > In 3 spots I've used fast_float namespace stuff unconditionally in one > function, which bre

[PATCH] libstdc++: Fix libstdc++ build on some targets [PR107811]

2022-11-23 Thread Jakub Jelinek via Gcc-patches
Hi! fast_float library relies on size_t being 32-bit or larger and float/double being IEEE single/double. Otherwise we only use strtod/strtof. In 3 spots I've used fast_float namespace stuff unconditionally in one function, which breaks the build if fast_float is disabled. Fixed thusly, bootstra