Give GNU Make limitless stacks

This commit is contained in:
Justine Tunney 2024-01-04 03:26:26 -08:00
parent 796148790f
commit 3864f78b88
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
2 changed files with 4 additions and 3 deletions

View file

@ -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

View file

@ -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"));