From 3864f78b8827888b95859dd2468553ff279522cc Mon Sep 17 00:00:00 2001 From: Justine Tunney Date: Thu, 4 Jan 2024 03:26:26 -0800 Subject: [PATCH] Give GNU Make limitless stacks --- third_party/make/BUILD.mk | 3 ++- third_party/make/signame.c | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/third_party/make/BUILD.mk b/third_party/make/BUILD.mk index 2d0464f67..156a812a0 100644 --- a/third_party/make/BUILD.mk +++ b/third_party/make/BUILD.mk @@ -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 diff --git a/third_party/make/signame.c b/third_party/make/signame.c index 50134c45c..f6c390623 100644 --- a/third_party/make/signame.c +++ b/third_party/make/signame.c @@ -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"));