public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libstdc++/106162] New: libstdc++v3: bits/largefile-config.h.tmp: No such file or directory race condition
@ 2022-07-01 18:10 slyfox at gcc dot gnu.org
  2022-07-01 18:11 ` [Bug libstdc++/106162] " slyfox at gcc dot gnu.org
                   ` (13 more replies)
  0 siblings, 14 replies; 15+ messages in thread
From: slyfox at gcc dot gnu.org @ 2022-07-01 18:10 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106162

            Bug ID: 106162
           Summary: libstdc++v3: bits/largefile-config.h.tmp: No such file
                    or directory race condition
           Product: gcc
           Version: 13.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libstdc++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: slyfox at gcc dot gnu.org
                CC: jwakely.gcc at gmail dot com
  Target Milestone: ---

There is a race condition when (I speculate) libstdcv++v3 is built in parallel
from different 'make' processes. Perhaps for c++98 | c++11 | x++17 instances?

>From libstdc++-v3/include/Makefile.am:

  # This header is not installed, it's only used to build libstdc++ itself.
  ${host_builddir}/largefile-config.h: ${CONFIG_HEADER}
        @rm -f $@.tmp
        @-grep 'define _DARWIN_USE_64_BIT_INODE' ${CONFIG_HEADER} >> $@.tmp
        @-grep 'define _FILE_OFFSET_BITS' ${CONFIG_HEADER} >> $@.tmp
        @-grep 'define _LARGE_FILES' ${CONFIG_HEADER} >> $@.tmp
        @mv $@.tmp $@

As a result 'bits/largefile-config.h' rule gets executed in parallel and
clobbers temporary file on this week's gcc-13 snapshot:

...
make[3]: Entering directory '/build/build/x86_64-w64-mingw32/libstdc++-v3'
Making all in include
make[4]: Entering directory
'/build/build/x86_64-w64-mingw32/libstdc++-v3/include'
echo 1 > stamp-dual-abi
echo 1 > stamp-allocator-new
echo timestamp > stamp-pb
echo 1 > stamp-cxx11-abi
echo 0 > stamp-visibility
echo 1 > stamp-extern-template
echo 0 > stamp-namespace-version
echo 'define _GLIBCXX_USE_FLOAT128 1' > stamp-float128
/nix/store/xsq6y0yn5mbmyazn51c86kz9zkr357xj-bash-5.1-p16/bin/bash: line 1:
x86_64-w64-mingw32/bits/largefile-config.h.tmp: No such file or directory
make[4]: [Makefile:1785: x86_64-w64-mingw32/bits/largefile-config.h] Error 1
(ignored) shuffle=1656692854
/nix/store/xsq6y0yn5mbmyazn51c86kz9zkr357xj-bash-5.1-p16/bin/bash: line 1:
x86_64-w64-mingw32/bits/largefile-config.h.tmp: No such file or directory
make[4]: [Makefile:1786: x86_64-w64-mingw32/bits/largefile-config.h] Error 1
(ignored) shuffle=1656692854
/nix/store/xsq6y0yn5mbmyazn51c86kz9zkr357xj-bash-5.1-p16/bin/bash: line 1:
x86_64-w64-mingw32/bits/largefile-config.h.tmp: No such file or directory
make[4]: [Makefile:1787: x86_64-w64-mingw32/bits/largefile-config.h] Error 1
(ignored) shuffle=1656692854
mv: cannot stat 'x86_64-w64-mingw32/bits/largefile-config.h.tmp': No such file
or directory
make[4]: *** [Makefile:1788: x86_64-w64-mingw32/bits/largefile-config.h] Error
1 shuffle=1656692854
make[4]: *** Waiting for unfinished jobs....
make[4]: Leaving directory
'/build/build/x86_64-w64-mingw32/libstdc++-v3/include'
make[3]: *** [Makefile:576: all-recursive] Error 1 shuffle=1656692854
make[3]: Leaving directory '/build/build/x86_64-w64-mingw32/libstdc++-v3'
make[2]: *** [Makefile:501: all] Error 2 shuffle=1656692854
make[2]: Leaving directory '/build/build/x86_64-w64-mingw32/libstdc++-v3'
make[1]: *** [Makefile:12287: all-target-libstdc++-v3] Error 2
shuffle=1656692854
make[1]: Leaving directory '/build/build'
make: *** [Makefile:1031: all] Error 2 shuffle=1656692854

Note how 'largefile-config.h.tmp: No such file or directory' is reported 3
times.

Will attach full build.log in case it makes the error cause clearer.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug libstdc++/106162] libstdc++v3: bits/largefile-config.h.tmp: No such file or directory race condition
  2022-07-01 18:10 [Bug libstdc++/106162] New: libstdc++v3: bits/largefile-config.h.tmp: No such file or directory race condition slyfox at gcc dot gnu.org
@ 2022-07-01 18:11 ` slyfox at gcc dot gnu.org
  2022-07-01 20:49 ` redi at gcc dot gnu.org
                   ` (12 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: slyfox at gcc dot gnu.org @ 2022-07-01 18:11 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106162

--- Comment #1 from Sergei Trofimovich <slyfox at gcc dot gnu.org> ---
Created attachment 53235
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=53235&action=edit
build.log.xz

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug libstdc++/106162] libstdc++v3: bits/largefile-config.h.tmp: No such file or directory race condition
  2022-07-01 18:10 [Bug libstdc++/106162] New: libstdc++v3: bits/largefile-config.h.tmp: No such file or directory race condition slyfox at gcc dot gnu.org
  2022-07-01 18:11 ` [Bug libstdc++/106162] " slyfox at gcc dot gnu.org
@ 2022-07-01 20:49 ` redi at gcc dot gnu.org
  2022-07-01 20:51 ` redi at gcc dot gnu.org
                   ` (11 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: redi at gcc dot gnu.org @ 2022-07-01 20:49 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106162

--- Comment #2 from Jonathan Wakely <redi at gcc dot gnu.org> ---
(In reply to Sergei Trofimovich from comment #0)
> There is a race condition when (I speculate) libstdcv++v3 is built in
> parallel from different 'make' processes. Perhaps for c++98 | c++11 | x++17
> instances?

There are no such instances. It is built separately for each multilib, but each
of those has its own $host_builddir

> 
> From libstdc++-v3/include/Makefile.am:
> 
>   # This header is not installed, it's only used to build libstdc++ itself.
>   ${host_builddir}/largefile-config.h: ${CONFIG_HEADER}
>         @rm -f $@.tmp
>         @-grep 'define _DARWIN_USE_64_BIT_INODE' ${CONFIG_HEADER} >> $@.tmp
>         @-grep 'define _FILE_OFFSET_BITS' ${CONFIG_HEADER} >> $@.tmp
>         @-grep 'define _LARGE_FILES' ${CONFIG_HEADER} >> $@.tmp
>         @mv $@.tmp $@
> 
> As a result 'bits/largefile-config.h' rule gets executed in parallel and

I don't see how that's possible. It's a prerequisite of c++config.h which is
built once per multilib, and parallel make processes will coordinate to only
build the prereq once.

Are you 100% sure you didn't actually run multiple make processes yourself, e.g
by using & instead of && in a shell command?

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug libstdc++/106162] libstdc++v3: bits/largefile-config.h.tmp: No such file or directory race condition
  2022-07-01 18:10 [Bug libstdc++/106162] New: libstdc++v3: bits/largefile-config.h.tmp: No such file or directory race condition slyfox at gcc dot gnu.org
  2022-07-01 18:11 ` [Bug libstdc++/106162] " slyfox at gcc dot gnu.org
  2022-07-01 20:49 ` redi at gcc dot gnu.org
@ 2022-07-01 20:51 ` redi at gcc dot gnu.org
  2022-07-01 20:54 ` redi at gcc dot gnu.org
                   ` (10 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: redi at gcc dot gnu.org @ 2022-07-01 20:51 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106162

--- Comment #3 from Jonathan Wakely <redi at gcc dot gnu.org> ---
I think the errors are actually saying the directory doesn't exist, and are
coming from the three shell commands that redirect to that rule using >> $@.tmp

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug libstdc++/106162] libstdc++v3: bits/largefile-config.h.tmp: No such file or directory race condition
  2022-07-01 18:10 [Bug libstdc++/106162] New: libstdc++v3: bits/largefile-config.h.tmp: No such file or directory race condition slyfox at gcc dot gnu.org
                   ` (2 preceding siblings ...)
  2022-07-01 20:51 ` redi at gcc dot gnu.org
@ 2022-07-01 20:54 ` redi at gcc dot gnu.org
  2022-07-01 21:29 ` redi at gcc dot gnu.org
                   ` (9 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: redi at gcc dot gnu.org @ 2022-07-01 20:54 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106162

--- Comment #4 from Jonathan Wakely <redi at gcc dot gnu.org> ---
The header target is missing a prerequisite of stamp-${host_alias}

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug libstdc++/106162] libstdc++v3: bits/largefile-config.h.tmp: No such file or directory race condition
  2022-07-01 18:10 [Bug libstdc++/106162] New: libstdc++v3: bits/largefile-config.h.tmp: No such file or directory race condition slyfox at gcc dot gnu.org
                   ` (3 preceding siblings ...)
  2022-07-01 20:54 ` redi at gcc dot gnu.org
@ 2022-07-01 21:29 ` redi at gcc dot gnu.org
  2022-07-01 21:40 ` slyfox at gcc dot gnu.org
                   ` (8 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: redi at gcc dot gnu.org @ 2022-07-01 21:29 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106162

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Assignee|unassigned at gcc dot gnu.org      |redi at gcc dot gnu.org
     Ever confirmed|0                           |1
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2022-07-01

--- Comment #5 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Created attachment 53236
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=53236&action=edit
Add missing prerequisite to generated header

I'm testing this.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug libstdc++/106162] libstdc++v3: bits/largefile-config.h.tmp: No such file or directory race condition
  2022-07-01 18:10 [Bug libstdc++/106162] New: libstdc++v3: bits/largefile-config.h.tmp: No such file or directory race condition slyfox at gcc dot gnu.org
                   ` (4 preceding siblings ...)
  2022-07-01 21:29 ` redi at gcc dot gnu.org
@ 2022-07-01 21:40 ` slyfox at gcc dot gnu.org
  2022-07-01 21:43 ` cvs-commit at gcc dot gnu.org
                   ` (7 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: slyfox at gcc dot gnu.org @ 2022-07-01 21:40 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106162

--- Comment #6 from Sergei Trofimovich <slyfox at gcc dot gnu.org> ---
(In reply to Jonathan Wakely from comment #2)
> (In reply to Sergei Trofimovich from comment #0)
> > There is a race condition when (I speculate) libstdcv++v3 is built in
> > parallel from different 'make' processes. Perhaps for c++98 | c++11 | x++17
> > instances?
> 
> There are no such instances. It is built separately for each multilib, but
> each of those has its own $host_builddir

Aha, TIL!

> Are you 100% sure you didn't actually run multiple make processes yourself,
> e.g by using & instead of && in a shell command?

I was running it from a standard build script. Should be just 'make -j16 -l16'
(with a small caveat: make is built with --shuffle support to reorder what what
is allowed to expose missing depends:
https://savannah.gnu.org/bugs/index.php?62100).

(In reply to Jonathan Wakely from comment #5)
> Created attachment 53236 [details]
> Add missing prerequisite to generated header
> 
> I'm testing this.

Thank you! I'll also give it a go locally and will complain if it fails in a
similar way.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug libstdc++/106162] libstdc++v3: bits/largefile-config.h.tmp: No such file or directory race condition
  2022-07-01 18:10 [Bug libstdc++/106162] New: libstdc++v3: bits/largefile-config.h.tmp: No such file or directory race condition slyfox at gcc dot gnu.org
                   ` (5 preceding siblings ...)
  2022-07-01 21:40 ` slyfox at gcc dot gnu.org
@ 2022-07-01 21:43 ` cvs-commit at gcc dot gnu.org
  2022-07-01 21:43 ` redi at gcc dot gnu.org
                   ` (6 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2022-07-01 21:43 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106162

--- Comment #7 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Jonathan Wakely <redi@gcc.gnu.org>:

https://gcc.gnu.org/g:8a6ee426c2be3bd4359520e02c00ec60cac2fece

commit r13-1400-g8a6ee426c2be3bd4359520e02c00ec60cac2fece
Author: Jonathan Wakely <jwakely@redhat.com>
Date:   Fri Jul 1 22:23:43 2022 +0100

    libstdc++: Add missing prerequisite to generated header [PR106162]

    The ${host_builddir}/largefile-config.h header can't be written until
    its parent directory has been created, so it needs to have the creation
    of that directory as a prerequisite.

    libstdc++-v3/ChangeLog:

            PR libstdc++/106162
            * include/Makefile.am (largefile-config.h): Add
            stamp-${host_alias} prerequisite.
            * include/Makefile.in: Regenerate.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug libstdc++/106162] libstdc++v3: bits/largefile-config.h.tmp: No such file or directory race condition
  2022-07-01 18:10 [Bug libstdc++/106162] New: libstdc++v3: bits/largefile-config.h.tmp: No such file or directory race condition slyfox at gcc dot gnu.org
                   ` (6 preceding siblings ...)
  2022-07-01 21:43 ` cvs-commit at gcc dot gnu.org
@ 2022-07-01 21:43 ` redi at gcc dot gnu.org
  2022-07-01 21:43 ` redi at gcc dot gnu.org
                   ` (5 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: redi at gcc dot gnu.org @ 2022-07-01 21:43 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106162

--- Comment #8 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Fixed on trunk, but worth backporting to all branches.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug libstdc++/106162] libstdc++v3: bits/largefile-config.h.tmp: No such file or directory race condition
  2022-07-01 18:10 [Bug libstdc++/106162] New: libstdc++v3: bits/largefile-config.h.tmp: No such file or directory race condition slyfox at gcc dot gnu.org
                   ` (7 preceding siblings ...)
  2022-07-01 21:43 ` redi at gcc dot gnu.org
@ 2022-07-01 21:43 ` redi at gcc dot gnu.org
  2022-07-07 20:39 ` cvs-commit at gcc dot gnu.org
                   ` (4 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: redi at gcc dot gnu.org @ 2022-07-01 21:43 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106162

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |10.5

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug libstdc++/106162] libstdc++v3: bits/largefile-config.h.tmp: No such file or directory race condition
  2022-07-01 18:10 [Bug libstdc++/106162] New: libstdc++v3: bits/largefile-config.h.tmp: No such file or directory race condition slyfox at gcc dot gnu.org
                   ` (8 preceding siblings ...)
  2022-07-01 21:43 ` redi at gcc dot gnu.org
@ 2022-07-07 20:39 ` cvs-commit at gcc dot gnu.org
  2022-07-07 23:33 ` cvs-commit at gcc dot gnu.org
                   ` (3 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2022-07-07 20:39 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106162

--- Comment #9 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The releases/gcc-12 branch has been updated by Jonathan Wakely
<redi@gcc.gnu.org>:

https://gcc.gnu.org/g:ce5b1c3b95f7136c963d31673ca83f7392c40a53

commit r12-8556-gce5b1c3b95f7136c963d31673ca83f7392c40a53
Author: Jonathan Wakely <jwakely@redhat.com>
Date:   Fri Jul 1 22:23:43 2022 +0100

    libstdc++: Add missing prerequisite to generated header [PR106162]

    The ${host_builddir}/largefile-config.h header can't be written until
    its parent directory has been created, so it needs to have the creation
    of that directory as a prerequisite.

    libstdc++-v3/ChangeLog:

            PR libstdc++/106162
            * include/Makefile.am (largefile-config.h): Add
            stamp-${host_alias} prerequisite.
            * include/Makefile.in: Regenerate.

    (cherry picked from commit 8a6ee426c2be3bd4359520e02c00ec60cac2fece)

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug libstdc++/106162] libstdc++v3: bits/largefile-config.h.tmp: No such file or directory race condition
  2022-07-01 18:10 [Bug libstdc++/106162] New: libstdc++v3: bits/largefile-config.h.tmp: No such file or directory race condition slyfox at gcc dot gnu.org
                   ` (9 preceding siblings ...)
  2022-07-07 20:39 ` cvs-commit at gcc dot gnu.org
@ 2022-07-07 23:33 ` cvs-commit at gcc dot gnu.org
  2022-07-07 23:37 ` redi at gcc dot gnu.org
                   ` (2 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2022-07-07 23:33 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106162

--- Comment #10 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The releases/gcc-11 branch has been updated by Jonathan Wakely
<redi@gcc.gnu.org>:

https://gcc.gnu.org/g:92f43710bbe5e861d90681ef4691c37b8c70aec6

commit r11-10138-g92f43710bbe5e861d90681ef4691c37b8c70aec6
Author: Jonathan Wakely <jwakely@redhat.com>
Date:   Fri Jul 1 22:23:43 2022 +0100

    libstdc++: Add missing prerequisite to generated header [PR106162]

    The ${host_builddir}/largefile-config.h header can't be written until
    its parent directory has been created, so it needs to have the creation
    of that directory as a prerequisite.

    libstdc++-v3/ChangeLog:

            PR libstdc++/106162
            * include/Makefile.am (largefile-config.h): Add
            stamp-${host_alias} prerequisite.
            * include/Makefile.in: Regenerate.

    (cherry picked from commit 8a6ee426c2be3bd4359520e02c00ec60cac2fece)

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug libstdc++/106162] libstdc++v3: bits/largefile-config.h.tmp: No such file or directory race condition
  2022-07-01 18:10 [Bug libstdc++/106162] New: libstdc++v3: bits/largefile-config.h.tmp: No such file or directory race condition slyfox at gcc dot gnu.org
                   ` (10 preceding siblings ...)
  2022-07-07 23:33 ` cvs-commit at gcc dot gnu.org
@ 2022-07-07 23:37 ` redi at gcc dot gnu.org
  2022-07-23 11:30 ` cvs-commit at gcc dot gnu.org
  2022-07-23 17:35 ` redi at gcc dot gnu.org
  13 siblings, 0 replies; 15+ messages in thread
From: redi at gcc dot gnu.org @ 2022-07-07 23:37 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106162

--- Comment #11 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Fixed for 11.4 and 12.2

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug libstdc++/106162] libstdc++v3: bits/largefile-config.h.tmp: No such file or directory race condition
  2022-07-01 18:10 [Bug libstdc++/106162] New: libstdc++v3: bits/largefile-config.h.tmp: No such file or directory race condition slyfox at gcc dot gnu.org
                   ` (11 preceding siblings ...)
  2022-07-07 23:37 ` redi at gcc dot gnu.org
@ 2022-07-23 11:30 ` cvs-commit at gcc dot gnu.org
  2022-07-23 17:35 ` redi at gcc dot gnu.org
  13 siblings, 0 replies; 15+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2022-07-23 11:30 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106162

--- Comment #12 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The releases/gcc-10 branch has been updated by Jonathan Wakely
<redi@gcc.gnu.org>:

https://gcc.gnu.org/g:01c25003d2a21d199df22548c2c8a8110e755dc7

commit r10-10911-g01c25003d2a21d199df22548c2c8a8110e755dc7
Author: Jonathan Wakely <jwakely@redhat.com>
Date:   Fri Jul 1 22:23:43 2022 +0100

    libstdc++: Add missing prerequisite to generated header [PR106162]

    The ${host_builddir}/largefile-config.h header can't be written until
    its parent directory has been created, so it needs to have the creation
    of that directory as a prerequisite.

    libstdc++-v3/ChangeLog:

            PR libstdc++/106162
            * include/Makefile.am (largefile-config.h): Add
            stamp-${host_alias} prerequisite.
            * include/Makefile.in: Regenerate.

    (cherry picked from commit 8a6ee426c2be3bd4359520e02c00ec60cac2fece)

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug libstdc++/106162] libstdc++v3: bits/largefile-config.h.tmp: No such file or directory race condition
  2022-07-01 18:10 [Bug libstdc++/106162] New: libstdc++v3: bits/largefile-config.h.tmp: No such file or directory race condition slyfox at gcc dot gnu.org
                   ` (12 preceding siblings ...)
  2022-07-23 11:30 ` cvs-commit at gcc dot gnu.org
@ 2022-07-23 17:35 ` redi at gcc dot gnu.org
  13 siblings, 0 replies; 15+ messages in thread
From: redi at gcc dot gnu.org @ 2022-07-23 17:35 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106162

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |FIXED
             Status|ASSIGNED                    |RESOLVED

--- Comment #13 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Fixed in all active branches now.

^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2022-07-23 17:35 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-01 18:10 [Bug libstdc++/106162] New: libstdc++v3: bits/largefile-config.h.tmp: No such file or directory race condition slyfox at gcc dot gnu.org
2022-07-01 18:11 ` [Bug libstdc++/106162] " slyfox at gcc dot gnu.org
2022-07-01 20:49 ` redi at gcc dot gnu.org
2022-07-01 20:51 ` redi at gcc dot gnu.org
2022-07-01 20:54 ` redi at gcc dot gnu.org
2022-07-01 21:29 ` redi at gcc dot gnu.org
2022-07-01 21:40 ` slyfox at gcc dot gnu.org
2022-07-01 21:43 ` cvs-commit at gcc dot gnu.org
2022-07-01 21:43 ` redi at gcc dot gnu.org
2022-07-01 21:43 ` redi at gcc dot gnu.org
2022-07-07 20:39 ` cvs-commit at gcc dot gnu.org
2022-07-07 23:33 ` cvs-commit at gcc dot gnu.org
2022-07-07 23:37 ` redi at gcc dot gnu.org
2022-07-23 11:30 ` cvs-commit at gcc dot gnu.org
2022-07-23 17:35 ` redi at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).