Re: [Patch] Fix libstdc++ build when using uclibc instead of glibc

2016-01-07 Thread Jonathan Wakely
On 07/01/16 13:37 -0800, Steve Ellcey wrote: On Thu, 2016-01-07 at 20:56 +0100, Bernhard Reutner-Fischer wrote: On January 7, 2016 12:23:49 PM GMT+01:00, Jonathan Wakely wrote: >On 07/01/16 07:28 +0100, Marc Glisse wrote: >>On Wed, 6 Jan 2016, Jonathan Wakely wrote: >> >>>On 06/01/16 12:45 -08

Re: [Patch] Fix libstdc++ build when using uclibc instead of glibc

2016-01-07 Thread Steve Ellcey
On Thu, 2016-01-07 at 20:56 +0100, Bernhard Reutner-Fischer wrote: > On January 7, 2016 12:23:49 PM GMT+01:00, Jonathan Wakely > wrote: > >On 07/01/16 07:28 +0100, Marc Glisse wrote: > >>On Wed, 6 Jan 2016, Jonathan Wakely wrote: > >> > >>>On 06/01/16 12:45 -0800, Steve Ellcey wrote: > On Wed

Re: [Patch] Fix libstdc++ build when using uclibc instead of glibc

2016-01-06 Thread Jonathan Wakely
On 06/01/16 12:45 -0800, Steve Ellcey wrote: On Wed, 2016-01-06 at 20:34 +, Jonathan Wakely wrote: On 05/01/16 14:43 -0800, Steve Ellcey wrote: >While trying to build GCC with uclibc instead of glibc I ran into a build >failure in libstdc++. uclibc doesn't seem to provide the isfinite func

Re: [Patch] Fix libstdc++ build when using uclibc instead of glibc

2016-01-06 Thread Steve Ellcey
On Wed, 2016-01-06 at 20:34 +, Jonathan Wakely wrote: > On 05/01/16 14:43 -0800, Steve Ellcey wrote: > >While trying to build GCC with uclibc instead of glibc I ran into a build > >failure in libstdc++. uclibc doesn't seem to provide the isfinite function > >like glibc does so that means that

Re: [Patch] Fix libstdc++ build when using uclibc instead of glibc

2016-01-06 Thread Jonathan Wakely
On 05/01/16 14:43 -0800, Steve Ellcey wrote: While trying to build GCC with uclibc instead of glibc I ran into a build failure in libstdc++. uclibc doesn't seem to provide the isfinite function like glibc does so that means that libstdc++ doesn't have std::isfinite. This in turn caused include

[Patch] Fix libstdc++ build when using uclibc instead of glibc

2016-01-05 Thread Steve Ellcey
While trying to build GCC with uclibc instead of glibc I ran into a build failure in libstdc++. uclibc doesn't seem to provide the isfinite function like glibc does so that means that libstdc++ doesn't have std::isfinite. This in turn caused include/ext/random.tcc to not compile because it uses s