bootstrap: Don't use strsignal [PR 98300]
authorNathan Sidwell <nathan@acm.org>
Thu, 17 Dec 2020 14:05:25 +0000 (06:05 -0800)
committerNathan Sidwell <nathan@acm.org>
Thu, 17 Dec 2020 14:07:18 +0000 (06:07 -0800)
Sadly strsignal is nonportable, so signal numbers it is then.

c++tools/
* server.cc (crash_signal): Don't use strsignal.

c++tools/server.cc

index 6457dc5..8514ef6 100644 (file)
@@ -213,7 +213,8 @@ static void ATTRIBUTE_NORETURN ATTRIBUTE_COLD
 crash_signal (int sig)
 {
   signal (sig, SIG_DFL);
-  internal_error ("signal %s", strsignal (sig));
+  // strsignal is not portable :(
+  internal_error ("signal %d", sig);
 }
 
 /* A fatal error of some kind.  */