diff options
author | Khem Raj <raj.khem@gmail.com> | 2019-05-02 23:29:26 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-05-07 10:12:53 +0100 |
commit | 80bb16ee716386327bd3491b50282b2bd976edd7 (patch) | |
tree | 982f3f8b1692598a92539b8c6a4ad758b53dfa0c | |
parent | 9a69da44892c46849cfff1866c14022a6bcc1d72 (diff) | |
download | poky-80bb16ee716386327bd3491b50282b2bd976edd7.tar.gz |
mdadm: Disable Werror
Werror spews more warnings with gcc9, like other distros (
debian/fedora) disable Warnings as errors
Fixes
super-intel.c:696:9: error: taking address of packed member of 'struct imsm_super' may result in an unaligned pointer value [-Werror=address-of-packed-member]
(From OE-Core rev: 7ac6ac8eb8fc3c623eba0e245fd9049dc6e2dd86)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-extended/mdadm/files/debian-no-Werror.patch | 25 | ||||
-rw-r--r-- | meta/recipes-extended/mdadm/mdadm_4.1.bb | 1 |
2 files changed, 26 insertions, 0 deletions
diff --git a/meta/recipes-extended/mdadm/files/debian-no-Werror.patch b/meta/recipes-extended/mdadm/files/debian-no-Werror.patch new file mode 100644 index 0000000000..e66a15cd79 --- /dev/null +++ b/meta/recipes-extended/mdadm/files/debian-no-Werror.patch | |||
@@ -0,0 +1,25 @@ | |||
1 | From: martin f. krafft <madduck@debian.org> | ||
2 | Subject: Remove -Werror from compiler flags | ||
3 | |||
4 | -Werror seems like a bad idea on released/packaged code because a toolchain | ||
5 | update (introducing new warnings) could break the build. We'll let upstream | ||
6 | use it to beautify the code, but remove it for out builds. | ||
7 | |||
8 | Signed-off-by: martin f. krafft <madduck@debian.org> | ||
9 | |||
10 | Upstream-Status: Pending | ||
11 | --- | ||
12 | Makefile | 2 +- | ||
13 | 1 files changed, 1 insertions(+), 1 deletions(-) | ||
14 | |||
15 | --- a/Makefile | ||
16 | +++ b/Makefile | ||
17 | @@ -48,7 +48,7 @@ endif | ||
18 | |||
19 | CC ?= $(CROSS_COMPILE)gcc | ||
20 | CXFLAGS ?= -ggdb | ||
21 | -CWFLAGS = -Wall -Werror -Wstrict-prototypes -Wextra -Wno-unused-parameter | ||
22 | +CWFLAGS = -Wall -Wstrict-prototypes -Wextra -Wno-unused-parameter | ||
23 | ifdef WARN_UNUSED | ||
24 | CWFLAGS += -Wp,-D_FORTIFY_SOURCE=2 -O3 | ||
25 | endif | ||
diff --git a/meta/recipes-extended/mdadm/mdadm_4.1.bb b/meta/recipes-extended/mdadm/mdadm_4.1.bb index 947706ff5f..ef5ddf55db 100644 --- a/meta/recipes-extended/mdadm/mdadm_4.1.bb +++ b/meta/recipes-extended/mdadm/mdadm_4.1.bb | |||
@@ -17,6 +17,7 @@ SRC_URI = "${KERNELORG_MIRROR}/linux/utils/raid/mdadm/${BPN}-${PV}.tar.xz \ | |||
17 | file://0001-Use-CC-to-check-for-implicit-fallthrough-warning-sup.patch \ | 17 | file://0001-Use-CC-to-check-for-implicit-fallthrough-warning-sup.patch \ |
18 | file://0001-Compute-abs-diff-in-a-standard-compliant-way.patch \ | 18 | file://0001-Compute-abs-diff-in-a-standard-compliant-way.patch \ |
19 | file://0001-fix-gcc-8-format-truncation-warning.patch \ | 19 | file://0001-fix-gcc-8-format-truncation-warning.patch \ |
20 | file://debian-no-Werror.patch \ | ||
20 | file://mdadm.init \ | 21 | file://mdadm.init \ |
21 | file://mdmonitor.service \ | 22 | file://mdmonitor.service \ |
22 | " | 23 | " |