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

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