summaryrefslogtreecommitdiffstats
path: root/meta/recipes-bsp/gnu-efi/gnu-efi/gcc46-compatibility.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-bsp/gnu-efi/gnu-efi/gcc46-compatibility.patch')
-rw-r--r--meta/recipes-bsp/gnu-efi/gnu-efi/gcc46-compatibility.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/meta/recipes-bsp/gnu-efi/gnu-efi/gcc46-compatibility.patch b/meta/recipes-bsp/gnu-efi/gnu-efi/gcc46-compatibility.patch
new file mode 100644
index 0000000000..0ce6d7b0cb
--- /dev/null
+++ b/meta/recipes-bsp/gnu-efi/gnu-efi/gcc46-compatibility.patch
@@ -0,0 +1,21 @@
1don't break with old compilers and -DGNU_EFI_USE_MS_ABI
2It's entirely legitimate to request GNU_EFI_USE_MS_ABI even if the current
3compiler doesn't support it, and gnu-efi should transparently fall back to
4using legacy techniques to set the calling convention. We don't get type
5checking, but at least it will still compile.
6
7Author: Steve Langasek <steve.langasek@ubuntu.com>
8Upstream-Status: Pending
9Index: gnu-efi-3.0.3/inc/x86_64/efibind.h
10===================================================================
11--- gnu-efi-3.0.3.orig/inc/x86_64/efibind.h
12+++ gnu-efi-3.0.3/inc/x86_64/efibind.h
13@@ -25,8 +25,6 @@ Revision History
14 #if defined(GNU_EFI_USE_MS_ABI)
15 #if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 7))
16 #define HAVE_USE_MS_ABI 1
17- #else
18- #error Compiler is too old for GNU_EFI_USE_MS_ABI
19 #endif
20 #endif
21