Re: [committed] libstdc++: Move closing brace outside #endif [PR104866]

2022-03-14 Thread Detlef Vollmann
On 3/11/22 20:24, Detlef Vollmann wrote: On 3/11/22 18:59, Jonathan Wakely wrote: Thanks. Now I'm getting a build failure because libtol wasn't created in the avr/libstdc++-v3 directory of the build tree, but I'll have to look into that next week. /bin/sh: ../libtool: No such file or

Re: [committed] libstdc++: Move closing brace outside #endif [PR104866]

2022-03-11 Thread Detlef Vollmann
On 3/11/22 18:59, Jonathan Wakely wrote: Thanks. Now I'm getting a build failure because libtol wasn't created in the avr/libstdc++-v3 directory of the build tree, but I'll have to look into that next week. /bin/sh: ../libtool: No such file or directory Here's my configure call:

Re: [committed] libstdc++: Move closing brace outside #endif [PR104866]

2022-03-11 Thread Jonathan Wakely via Gcc-patches
On Fri, 11 Mar 2022 at 15:35, Detlef Vollmann wrote: > > On 3/11/22 16:12, Jonathan Wakely wrote: > > On Fri, 11 Mar 2022 at 14:28, Detlef Vollmann wrote: > >> With this and the other fix I was able to build the complete > >> libstdc++ for AVR based on AVR Libc 2.0 (plus some ad hoc > >> AVR

Re: [committed] libstdc++: Move closing brace outside #endif [PR104866]

2022-03-11 Thread Detlef Vollmann
On 3/11/22 16:12, Jonathan Wakely wrote: On Fri, 11 Mar 2022 at 14:28, Detlef Vollmann wrote: With this and the other fix I was able to build the complete libstdc++ for AVR based on AVR Libc 2.0 (plus some ad hoc AVR header fixes) from git master 5e28be89. Nice. I finally figure out that I

Re: [committed] libstdc++: Move closing brace outside #endif [PR104866]

2022-03-11 Thread Jonathan Wakely via Gcc-patches
On Fri, 11 Mar 2022 at 15:12, Jonathan Wakely wrote: > > On Fri, 11 Mar 2022 at 14:28, Detlef Vollmann wrote: > > > > Hi Jonathan, > > > > On 3/10/22 22:11, Jonathan Wakely wrote: > > > > > Tested x86_64-linux, pushed to trunk. > > > > Thanks. > > With this and the other fix I was able to build

Re: [committed] libstdc++: Move closing brace outside #endif [PR104866]

2022-03-11 Thread Jonathan Wakely via Gcc-patches
On Fri, 11 Mar 2022 at 14:28, Detlef Vollmann wrote: > > Hi Jonathan, > > On 3/10/22 22:11, Jonathan Wakely wrote: > > > Tested x86_64-linux, pushed to trunk. > > Thanks. > With this and the other fix I was able to build the complete > libstdc++ for AVR based on AVR Libc 2.0 (plus some ad hoc >

Re: [committed] libstdc++: Move closing brace outside #endif [PR104866]

2022-03-11 Thread Detlef Vollmann
Hi Jonathan, On 3/10/22 22:11, Jonathan Wakely wrote: Tested x86_64-linux, pushed to trunk. Thanks. With this and the other fix I was able to build the complete libstdc++ for AVR based on AVR Libc 2.0 (plus some ad hoc AVR header fixes) from git master 5e28be89. And a small example with

[committed] libstdc++: Move closing brace outside #endif [PR104866]

2022-03-10 Thread Jonathan Wakely via Gcc-patches
From: Detlef Vollmann Tested x86_64-linux, pushed to trunk. -- >8-- Author: Detlef Vollmann libstdc++-v3/ChangeLog: PR libstdc++/104866 * include/bits/this_thread_sleep.h: Fix order of #endif and closing brace of namespace. ---