[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: segfault (memory leak?) in GNU Make 3.82.90 (CVS HEAD)
From: |
Martin d'Anjou |
Subject: |
Re: segfault (memory leak?) in GNU Make 3.82.90 (CVS HEAD) |
Date: |
Wed, 18 Apr 2012 20:52:58 -0400 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:9.0) Gecko/20111220 Thunderbird/9.0 |
Hi,
Rereading this post, I see that I did not show what command lead to the
segfault problem. Here it is again. Should I file a bug?
.SECONDEXPANSION:
gen_default_Test_f := \
file1 \
file2
gen_default_Test_bar := bar_foo
gen_%.f: $${gen_$$*_f}
@echo "f $@"
gen_%: \
$$(if $$(gen_$$*_f),gen_%.f) \
$$(if $$(gen_$$*_bar),$$(gen_$$*_bar).ext)
@echo "$@"
$ touch file1
$ touch file2
$ make gen_default_Test
When I use GNU Make 3.81, this works as expected, when I use GNU Make 3.82, it
segfaults.
Regards,
Martin