From: Eric Andersen Date: Wed, 20 Aug 2003 14:38:31 +0000 (-0000) Subject: Fix gdb to not use sys_errlist[] and sys_nerr, X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7c6a2b226cf8475e4dfcc16fd14e461c83055728;p=buildroot.git Fix gdb to not use sys_errlist[] and sys_nerr, --- diff --git a/sources/gdb.patch b/sources/gdb.patch index ef04859d65..e7868a1726 100644 --- a/sources/gdb.patch +++ b/sources/gdb.patch @@ -498,3 +498,17 @@ Fix build on Sparc. #include #else #include +--- gdb-5.3/gdb/gdbserver/utils.c.orig 2003-08-20 08:34:18.000000000 -0600 ++++ gdb-5.3/gdb/gdbserver/utils.c 2003-08-20 08:35:00.000000000 -0600 +@@ -40,9 +40,8 @@ + const char *err; + char *combined; + +- if (errno < sys_nerr) +- err = sys_errlist[errno]; +- else ++ err = strerror (errno); ++ if (err == NULL) + err = "unknown error"; + + combined = (char *) alloca (strlen (err) + strlen (string) + 3);