在什么条件下GNU Make会改变堆栈大小,为什么?

时间:2016-10-19 18:28:25

标签: makefile gnu-make ulimit

考虑这个makefile:

.PHONY: all

all: dummy test
    ulimit -s

include dummy

dummy: test
    touch dummy

当我运行它时,我得到:

$ make -v
GNU Make 4.1
Built for x86_64-pc-linux-gnu
Copyright (C) 1988-2014 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
$ touch test; make
touch dummy
ulimit -s
unlimited

但是,如果我删除include dummy或将touch dummy替换为true,则ulimit -s8192。发生了什么事?

1 个答案:

答案 0 :(得分:2)

这是bug 48009,已在GNU make 4.2.1中修复。