diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-04-23 13:08:48 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-04-23 19:29:25 +0200 |
commit | e6994d7e3f3f4a69f984c9e67df27abe1bc07c1c (patch) | |
tree | 42d7343beb810d0ec2e940877f1de0ca78681f32 /gnu/packages/patches | |
parent | 01d7fc9d566b456e343cc93dae23f0faa8f15f49 (diff) | |
download | guix-e6994d7e3f3f4a69f984c9e67df27abe1bc07c1c.tar.gz |
gnu: gcc-arm-none-eabi-4.9: Fix incompatible redeclaration.
* gnu/packages/patches/gcc-4.9-inline.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/embedded.scm (gcc-arm-none-eabi-4.9)[source]: Use it.
Diffstat (limited to 'gnu/packages/patches')
-rw-r--r-- | gnu/packages/patches/gcc-4.9-inline.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gnu/packages/patches/gcc-4.9-inline.patch b/gnu/packages/patches/gcc-4.9-inline.patch new file mode 100644 index 0000000000..f2762c903a --- /dev/null +++ b/gnu/packages/patches/gcc-4.9-inline.patch @@ -0,0 +1,13 @@ +diff -ru a/gcc/cp/cfns.h b/gcc/cp/cfns.h +--- a/gcc/cp/cfns.h 1970-01-01 01:00:01.000000000 +0100 ++++ b/gcc/cp/cfns.h 2023-04-23 09:23:28.883815598 +0200 +@@ -53,6 +53,9 @@ + static unsigned int hash (const char *, unsigned int); + #ifdef __GNUC__ + __inline ++#ifdef __GNUC_STDC_INLINE__ ++__attribute__ ((__gnu_inline__)) ++#endif + #endif + const char * libc_name_p (const char *, unsigned int); + /* maximum key range = 391, duplicates = 0 */ |