Re: seg fault with EXTRA_PREREQS

2025-04-22 Thread Dmitry Goncharov
On Tue, Apr 22, 2025 at 8:54 PM Shim Manning wrote: > > Minimal test. Generates a list of 1000 prerequisites. > > list := $(shell for n in $$(seq 1 1000); do echo file_$$n; done) > all: .EXTRA_PREREQS := $(list) > all: > echo "fin" > > And tes making a copy of the table appears to fix it Thank y

[bug #67046] .EXTRA_PREREQS causes a segfault.

2025-04-22 Thread Dmitry Goncharov
Additional Item Attachment, bug #67046 (group make): File name: sv67046.diff Size: 3KiB AGPL NOTICE These attachments are served by Savane. You can download the corresponding source code of Savane at https

[bug #67046] .EXTRA_PREREQS causes a segfault.

2025-04-22 Thread Dmitry Goncharov
Follow-up Comment #1, bug #67046 (group make): A user reported a crash caused by .EXTRA_PREREQS carrying a large number of prerequisites. The original bug report is here https://lists.gnu.org/archive/html/bug-make/2025-04/msg9.html. $ ls makefile $ cat makefile list := $(shell for n in $$(s

[bug #67046] .EXTRA_PREREQS causes a segfault.

2025-04-22 Thread Dmitry Goncharov
URL: Summary: .EXTRA_PREREQS causes a segfault. Group: make Submitter: dgoncharov Submitted: Wed 23 Apr 2025 02:36:53 AM GMT Severity: 3 - Normal Item Group: Bug

Re: seg fault with EXTRA_PREREQS

2025-04-22 Thread Shim Manning
Minimal test. Generates a list of 1000 prerequisites. list := $(shell for n in $$(seq 1 1000); do echo file_$$n; done) all: .EXTRA_PREREQS := $(list) all: echo "fin" And tes making a copy of the table appears to fix it On Sat, Apr 19, 2025 at 9:26 PM Dmitry Goncharov wrote: > On Fri, Apr 18,