aboutsummaryrefslogtreecommitdiff
path: root/libiberty
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2018-07-19 08:47:34 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2018-07-19 08:47:34 +0000
commit30ae6662408271f96a97d28f684022c413b71063 (patch)
tree8de88d09b5dbf4336956101abf6df6e423ccc9c1 /libiberty
parent6e559c70b7525cea4174ea958067987e64314e1b (diff)
downloadgcc-30ae6662408271f96a97d28f684022c413b71063.zip
gcc-30ae6662408271f96a97d28f684022c413b71063.tar.gz
gcc-30ae6662408271f96a97d28f684022c413b71063.tar.bz2
simple-object-elf.c (ENOTSUP): If not defined by errno.h, redirect to ENOSYS.
2018-07-19 Eli Zaretskii <eliz@gnu.org> * simple-object-elf.c (ENOTSUP): If not defined by errno.h, redirect to ENOSYS. From-SVN: r262872
Diffstat (limited to 'libiberty')
-rw-r--r--libiberty/ChangeLog5
-rw-r--r--libiberty/simple-object-elf.c4
2 files changed, 9 insertions, 0 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog
index 578da58..398d030 100644
--- a/libiberty/ChangeLog
+++ b/libiberty/ChangeLog
@@ -1,3 +1,8 @@
+2018-07-19 Eli Zaretskii <eliz@gnu.org>
+
+ * simple-object-elf.c (ENOTSUP): If not defined by errno.h, redirect
+ to ENOSYS.
+
2018-05-30 Jan Hubicka <hubicka@ucw.cz>
* simple-object.c (handle_lto_debug_sections): Add rename parameter.
diff --git a/libiberty/simple-object-elf.c b/libiberty/simple-object-elf.c
index 7468a1a..021ce48 100644
--- a/libiberty/simple-object-elf.c
+++ b/libiberty/simple-object-elf.c
@@ -22,6 +22,10 @@ Boston, MA 02110-1301, USA. */
#include "simple-object.h"
#include <errno.h>
+/* mingw.org's MinGW doesn't have ENOTSUP. */
+#ifndef ENOTSUP
+# define ENOTSUP ENOSYS
+#endif
#include <stddef.h>
#ifdef HAVE_STDLIB_H