diff options
Diffstat (limited to 'recipes-graphics/userland/files/0021-cmake-Disable-format-overflow-warning-as-error.patch')
-rw-r--r-- | recipes-graphics/userland/files/0021-cmake-Disable-format-overflow-warning-as-error.patch | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/recipes-graphics/userland/files/0021-cmake-Disable-format-overflow-warning-as-error.patch b/recipes-graphics/userland/files/0021-cmake-Disable-format-overflow-warning-as-error.patch new file mode 100644 index 0000000..703d300 --- /dev/null +++ b/recipes-graphics/userland/files/0021-cmake-Disable-format-overflow-warning-as-error.patch | |||
@@ -0,0 +1,32 @@ | |||
1 | From 4886bd9f33727f6a16aeb3b1aa3c25e459f06581 Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Tue, 31 Mar 2020 11:51:02 -0700 | ||
4 | Subject: [PATCH] cmake: Disable format-overflow warning as error | ||
5 | |||
6 | gcc10 complains about a check which could potentially be null | ||
7 | |||
8 | build/inc/interface/vcos/vcos_logging.h:234:88: error: '%s' directive argument is null [-Werror=format-overflow=] | ||
9 | 234 | # define _VCOS_LOG_X(cat, _level, fmt...) do { if (vcos_is_log_enabled(cat,_level)) vcos_log_impl(cat,_level,fmt); } while (0) | ||
10 | | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
11 | |||
12 | A potential fix would be to check for fmt not being null but lets leave | ||
13 | that to experts | ||
14 | |||
15 | Upstream-Status: Pending | ||
16 | |||
17 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
18 | --- | ||
19 | host_applications/linux/libs/bcm_host/CMakeLists.txt | 2 +- | ||
20 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
21 | |||
22 | --- a/host_applications/linux/libs/bcm_host/CMakeLists.txt | ||
23 | +++ b/host_applications/linux/libs/bcm_host/CMakeLists.txt | ||
24 | @@ -3,7 +3,7 @@ if (WIN32) | ||
25 | set(VCOS_PLATFORM win32) | ||
26 | else () | ||
27 | set(VCOS_PLATFORM pthreads) | ||
28 | - add_definitions(-Wall -Werror) | ||
29 | + add_definitions(-Wall) | ||
30 | endif () | ||
31 | |||
32 | # set this as we want all the source of vchostif to be available in libbcm_host | ||