This is the mail archive of the
newlib@sourceware.org
mailing list for the newlib project.
[PATCH] Make __always_inline macro compatible with glibc
- From: Yaakov Selkowitz <yselkowi at redhat dot com>
- To: newlib at sourceware dot org
- Date: Tue, 16 Jan 2018 13:30:52 -0600
- Subject: [PATCH] Make __always_inline macro compatible with glibc
- Authentication-results: sourceware.org; auth=none
For example, this is used when cross-compiling the Linux kernel on Cygwin.
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
---
newlib/libc/include/sys/cdefs.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/newlib/libc/include/sys/cdefs.h b/newlib/libc/include/sys/cdefs.h
index db5f2bf2d..fc564a5c6 100644
--- a/newlib/libc/include/sys/cdefs.h
+++ b/newlib/libc/include/sys/cdefs.h
@@ -385,7 +385,7 @@
#endif
#if __GNUC_PREREQ__(3, 1) || (defined(__INTEL_COMPILER) && __INTEL_COMPILER >= 800)
-#define __always_inline __attribute__((__always_inline__))
+#define __always_inline __inline__ __attribute__((__always_inline__))
#else
#define __always_inline
#endif
--
2.15.1