diff options
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.patch | 55 |
1 files changed, 0 insertions, 55 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 deleted file mode 100644 index 221a314c..00000000 --- a/recipes-extended/xvisor/files/0001-EMULATORS-Allow-Xvisor-to-compile-with-gcc-10.patch +++ /dev/null | |||
| @@ -1,55 +0,0 @@ | |||
| 1 | From 417184cc41cfd33ae7b4c11c8396e0f47f43e2ba Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Jean-Christophe Dubois <jcd@tribudubois.net> | ||
| 3 | Date: Fri, 8 May 2020 15:17:36 +0200 | ||
| 4 | Subject: [PATCH] EMULATORS: Allow Xvisor to compile with gcc 10. | ||
| 5 | |||
| 6 | With gcc 10 because some header files do not declare some variable | ||
| 7 | definition as extern, the variable get duplicated in all files | ||
| 8 | using it. | ||
| 9 | |||
| 10 | This patch allow xvisor to compile with the latest gcc. | ||
| 11 | |||
| 12 | Signed-off-by: Jean-Christophe Dubois <jcd@tribudubois.net> | ||
| 13 | Reviewed-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 | |||
| 19 | diff --git a/drivers/mmc/core/core.h b/drivers/mmc/core/core.h | ||
| 20 | index 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 | |||
| 32 | diff --git a/emulators/display/drawfn.h b/emulators/display/drawfn.h | ||
| 33 | index 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 | ||
