mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-03-15 05:16:30 +00:00
Give GNU Make limitless stacks
This commit is contained in:
parent
796148790f
commit
3864f78b88
2 changed files with 4 additions and 3 deletions
3
third_party/make/BUILD.mk
vendored
3
third_party/make/BUILD.mk
vendored
|
@ -66,7 +66,8 @@ $(THIRD_PARTY_MAKE_OBJS): private \
|
|||
CFLAGS += \
|
||||
-fportcosmo \
|
||||
-DNO_ARCHIVES \
|
||||
-DHAVE_CONFIG_H
|
||||
-DHAVE_CONFIG_H \
|
||||
-DSET_STACK_SIZE
|
||||
|
||||
$(THIRD_PARTY_MAKE_OBJS): third_party/make/BUILD.mk
|
||||
|
||||
|
|
4
third_party/make/signame.c
vendored
4
third_party/make/signame.c
vendored
|
@ -121,10 +121,10 @@ signame_init (void)
|
|||
init_sig (SIGKILL, "KILL", _("Killed"));
|
||||
#endif
|
||||
#if defined (SIGBUS)
|
||||
init_sig (SIGBUS, "BUS", _("Bus error"));
|
||||
// init_sig (SIGBUS, "BUS", _("Bus error"));
|
||||
#endif
|
||||
#if defined (SIGSEGV)
|
||||
init_sig (SIGSEGV, "SEGV", _("Segmentation fault"));
|
||||
// init_sig (SIGSEGV, "SEGV", _("Segmentation fault"));
|
||||
#endif
|
||||
#if defined (SIGSYS)
|
||||
init_sig (SIGSYS, "SYS", _("Bad system call"));
|
||||
|
|
Loading…
Add table
Reference in a new issue