From 3889a9b28a10dd0a130b3ba3446b930e9bc6eb7e Mon Sep 17 00:00:00 2001 From: rofl0r Date: Tue, 22 Oct 2019 17:12:26 +0000 Subject: [PATCH] gcc 4.2.1: backport cfns inline fix --- patches/gcc-4.2.1/0014-cfns-inline-fix.diff | 22 +++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 patches/gcc-4.2.1/0014-cfns-inline-fix.diff diff --git a/patches/gcc-4.2.1/0014-cfns-inline-fix.diff b/patches/gcc-4.2.1/0014-cfns-inline-fix.diff new file mode 100644 index 0000000..633bb09 --- /dev/null +++ b/patches/gcc-4.2.1/0014-cfns-inline-fix.diff @@ -0,0 +1,22 @@ +--- gcc-4.2.1.orig/gcc/cp/cfns.h ++++ gcc-4.2.1/gcc/cp/cfns.h +@@ -37,6 +37,9 @@ + #ifdef __GNUC__ + __inline + #endif ++#ifdef __GNUC_STDC_INLINE__ ++__attribute__ ((__gnu_inline__)) ++#endif + const char * libc_name_p (const char *, unsigned int); + /* maximum key range = 391, duplicates = 0 */ + +@@ -107,6 +110,9 @@ + + #ifdef __GNUC__ + __inline ++#endif ++#ifdef __GNUC_STDC_INLINE__ ++__attribute__ ((__gnu_inline__)) + #endif + const char * + libc_name_p (register const char *str, register unsigned int len)