[bug #63111] Regression. make runs out of file descriptors.

2022-10-02 Thread Paul D. Smith
Update of bug #63111 (project make): Status:None => Fixed Assigned to:None => psmith Open/Closed:Open => Closed Fixed Release:

[bug #63111] Regression. make runs out of file descriptors.

2022-10-01 Thread Paul D. Smith
Follow-up Comment #6, bug #63111 (project make): I took a shot at creating a warning. It's not so simple. I think that the thing we want to warn about is: * we used a pattern rule with multiple targets to build the wanted target * the wanted target was actually updated * some also-make target wa

[bug #63111] Regression. make runs out of file descriptors.

2022-09-28 Thread Paul D. Smith
Follow-up Comment #5, bug #63111 (project make): >> 2) Keep the change for explicit grouped targets, and revert the change for pattern rule grouped targets, say that these two will always work differently. > > i suspect, this difference in behavior can cause trouble than the original bug. I guess

[bug #63111] Regression. make runs out of file descriptors.

2022-09-27 Thread Dmitry Goncharov
Follow-up Comment #4, bug #63111 (project make): [comment #3 comment #3:] > There are two parts to this: one is not freeing / cleaning temp files on re-exec. Andreas posted a patch which I will check, thanks Andreas! The coreutils failure is the leak of fd. There is no infinite recursion. i can

[bug #63111] Regression. make runs out of file descriptors.

2022-09-27 Thread Paul D. Smith
Follow-up Comment #3, bug #63111 (project make): There are two parts to this: one is not freeing / cleaning temp files on re-exec. Andreas posted a patch which I will check, thanks Andreas! The second is the infinite re-exec issue. This is another facet of the same issue reported by bug #63098

[bug #63111] Regression. make runs out of file descriptors.

2022-09-27 Thread Andreas Schwab
Follow-up Comment #2, bug #63111 (project make): Note that dtc has already fixed the problematic pattern rule (see commit 98a0700). ___ Reply to this item at: _

[bug #63111] Regression. make runs out of file descriptors.

2022-09-26 Thread Dmitry Goncharov
Follow-up Comment #1, bug #63111 (project make): A user reported an issue where make runs out of file descriptors. The original bug report is here https://lists.gnu.org/archive/html/bug-make/2022-09/msg00122.html This makefile in question has the following problematic make code %.tab.c %.

[bug #63111] Regression. make runs out of file descriptors.

2022-09-26 Thread Dmitry Goncharov
URL: Summary: Regression. make runs out of file descriptors. Project: make Submitter: dgoncharov Submitted: Mon 26 Sep 2022 09:35:21 PM UTC Severity: 3 - Normal It