summaryrefslogtreecommitdiffstats
path: root/recipes-extended/xvisor/files/0001-EMULATORS-Allow-Xvisor-to-compile-with-gcc-10.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-extended/xvisor/files/0001-EMULATORS-Allow-Xvisor-to-compile-with-gcc-10.patch')
-rw-r--r--recipes-extended/xvisor/files/0001-EMULATORS-Allow-Xvisor-to-compile-with-gcc-10.patch55
1 files changed, 55 insertions, 0 deletions
diff --git a/recipes-extended/xvisor/files/0001-EMULATORS-Allow-Xvisor-to-compile-with-gcc-10.patch b/recipes-extended/xvisor/files/0001-EMULATORS-Allow-Xvisor-to-compile-with-gcc-10.patch
new file mode 100644
index 00000000..221a314c
--- /dev/null
+++ b/recipes-extended/xvisor/files/0001-EMULATORS-Allow-Xvisor-to-compile-with-gcc-10.patch
@@ -0,0 +1,55 @@
1From 417184cc41cfd33ae7b4c11c8396e0f47f43e2ba Mon Sep 17 00:00:00 2001
2From: Jean-Christophe Dubois <jcd@tribudubois.net>
3Date: Fri, 8 May 2020 15:17:36 +0200
4Subject: [PATCH] EMULATORS: Allow Xvisor to compile with gcc 10.
5
6With gcc 10 because some header files do not declare some variable
7definition as extern, the variable get duplicated in all files
8using it.
9
10This patch allow xvisor to compile with the latest gcc.
11
12Signed-off-by: Jean-Christophe Dubois <jcd@tribudubois.net>
13Reviewed-by: Anup Patel <anup@brainfault.org>
14---
15 drivers/mmc/core/core.h | 2 +-
16 emulators/display/drawfn.h | 10 +++++-----
17 2 files changed, 6 insertions(+), 6 deletions(-)
18
19diff --git a/drivers/mmc/core/core.h b/drivers/mmc/core/core.h
20index d75d135a..e2ca3141 100644
21--- a/drivers/mmc/core/core.h
22+++ b/drivers/mmc/core/core.h
23@@ -64,7 +64,7 @@ int mmc_go_idle(struct mmc_host *host);
24 * Note: Must be called with host->lock held.
25 */
26 extern struct vmm_bus sdio_bus_type;
27-struct vmm_device_type sdio_func_type;
28+extern struct vmm_device_type sdio_func_type;
29
30 int __sdio_attach(struct mmc_host *host);
31
32diff --git a/emulators/display/drawfn.h b/emulators/display/drawfn.h
33index f9163cff..385deaf6 100644
34--- a/emulators/display/drawfn.h
35+++ b/emulators/display/drawfn.h
36@@ -69,14 +69,14 @@ typedef void (*drawfn)(struct vmm_surface *,
37 DRAWFN_ORDER_MAX * \
38 DRAWFN_FORMAT_MAX)
39
40-drawfn drawfn_surface_fntable_8[DRAWFN_FNTABLE_SIZE];
41+extern drawfn drawfn_surface_fntable_8[DRAWFN_FNTABLE_SIZE];
42
43-drawfn drawfn_surface_fntable_15[DRAWFN_FNTABLE_SIZE];
44+extern drawfn drawfn_surface_fntable_15[DRAWFN_FNTABLE_SIZE];
45
46-drawfn drawfn_surface_fntable_16[DRAWFN_FNTABLE_SIZE];
47+extern drawfn drawfn_surface_fntable_16[DRAWFN_FNTABLE_SIZE];
48
49-drawfn drawfn_surface_fntable_24[DRAWFN_FNTABLE_SIZE];
50+extern drawfn drawfn_surface_fntable_24[DRAWFN_FNTABLE_SIZE];
51
52-drawfn drawfn_surface_fntable_32[DRAWFN_FNTABLE_SIZE];
53+extern drawfn drawfn_surface_fntable_32[DRAWFN_FNTABLE_SIZE];
54
55 #endif