* [meta-oe][PATCH] librelp: Pass Wno-error to compiler
@ 2019-07-20 5:14 Khem Raj
2019-07-22 9:12 ` Robert Yang
0 siblings, 1 reply; 2+ messages in thread
From: Khem Raj @ 2019-07-20 5:14 UTC (permalink / raw)
To: openembedded-devel; +Cc: Oleksandr Kravchuk
After autoconf-archive was upgraded to 2019.01.06 it started to add
extra warning flags via WARN_CFLAGS along with -Werror which means that
now compiler could be stricter and break the build if any of the new
warnings are flagged
The difference is
old
WARN_CFLAGS='-fno-strict-aliasing -Wimplicit-function-declaration -Wold-style-definition -Wjump-misses-init -Werror -Wno-suggest-attribute=format -Wunused-parameter -Wmissing-field-initializers'
new
WARN_CFLAGS='-fno-strict-aliasing -Wimplicit-function-declaration -Wold-style-definition -Wjump-misses-init -Wall -Wextra -Wundef -Wwrite-strings -Wpointer-arith -Wmissing-declarations -Wredundant-decls -Wno-unused-parameter -Wno-missing-field-initializers -Wformat=2 -Wcast-align -Wformat-nonliteral -Wformat-security -Wsign-compare -Wstrict-aliasing -Wshadow -Winline -Wpacked -Wmissing-format-attribute -Wmissing-noreturn -Winit-self -Wmissing-include-dirs -Wunused-but-set-variable -Warray-bounds -Wreturn-type -Wswitch-enum -Wswitch-default -Wduplicated-cond -Wduplicated-branches -Wlogical-op -Wrestrict -Wnull-dereference -Wdouble-promotion -pedantic -Wunused-parameter -Wmissing-field-initializers -Werror -Wno-suggest-attribute=format -Wunused-parameter -Wmissing-field-initializers'
Hence we started seing build failure like https://errors.yoctoproject.org/Errors/Details/252684/
This fix just turns off warnings-as-errors so build can still go on, if
we need to fix the warnings they still are present in log.do_compile
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Cc: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Cc: Robert Yang <liezhi.yang@windriver.com>
---
meta-oe/recipes-extended/rsyslog/librelp_1.4.0.bb | 2 ++
1 file changed, 2 insertions(+)
diff --git a/meta-oe/recipes-extended/rsyslog/librelp_1.4.0.bb b/meta-oe/recipes-extended/rsyslog/librelp_1.4.0.bb
index 9e57dd520d..16c63a7523 100644
--- a/meta-oe/recipes-extended/rsyslog/librelp_1.4.0.bb
+++ b/meta-oe/recipes-extended/rsyslog/librelp_1.4.0.bb
@@ -14,3 +14,5 @@ SRCREV = "e96443dda3c080fa991decec26bc4ac98d24b9a2"
S = "${WORKDIR}/git"
inherit autotools pkgconfig
+
+CPPFLAGS += "-Wno-error"
--
2.22.0
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [meta-oe][PATCH] librelp: Pass Wno-error to compiler
2019-07-20 5:14 [meta-oe][PATCH] librelp: Pass Wno-error to compiler Khem Raj
@ 2019-07-22 9:12 ` Robert Yang
0 siblings, 0 replies; 2+ messages in thread
From: Robert Yang @ 2019-07-22 9:12 UTC (permalink / raw)
To: Khem Raj, openembedded-devel; +Cc: Oleksandr Kravchuk
Thanks, it works for me.
// Robert
On 7/20/19 1:14 PM, Khem Raj wrote:
> After autoconf-archive was upgraded to 2019.01.06 it started to add
> extra warning flags via WARN_CFLAGS along with -Werror which means that
> now compiler could be stricter and break the build if any of the new
> warnings are flagged
>
> The difference is
>
> old
>
> WARN_CFLAGS='-fno-strict-aliasing -Wimplicit-function-declaration -Wold-style-definition -Wjump-misses-init -Werror -Wno-suggest-attribute=format -Wunused-parameter -Wmissing-field-initializers'
>
> new
>
> WARN_CFLAGS='-fno-strict-aliasing -Wimplicit-function-declaration -Wold-style-definition -Wjump-misses-init -Wall -Wextra -Wundef -Wwrite-strings -Wpointer-arith -Wmissing-declarations -Wredundant-decls -Wno-unused-parameter -Wno-missing-field-initializers -Wformat=2 -Wcast-align -Wformat-nonliteral -Wformat-security -Wsign-compare -Wstrict-aliasing -Wshadow -Winline -Wpacked -Wmissing-format-attribute -Wmissing-noreturn -Winit-self -Wmissing-include-dirs -Wunused-but-set-variable -Warray-bounds -Wreturn-type -Wswitch-enum -Wswitch-default -Wduplicated-cond -Wduplicated-branches -Wlogical-op -Wrestrict -Wnull-dereference -Wdouble-promotion -pedantic -Wunused-parameter -Wmissing-field-initializers -Werror -Wno-suggest-attribute=format -Wunused-parameter -Wmissing-field-initializers'
>
> Hence we started seing build failure like https://errors.yoctoproject.org/Errors/Details/252684/
>
> This fix just turns off warnings-as-errors so build can still go on, if
> we need to fix the warnings they still are present in log.do_compile
>
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
> Cc: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
> Cc: Robert Yang <liezhi.yang@windriver.com>
> ---
> meta-oe/recipes-extended/rsyslog/librelp_1.4.0.bb | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/meta-oe/recipes-extended/rsyslog/librelp_1.4.0.bb b/meta-oe/recipes-extended/rsyslog/librelp_1.4.0.bb
> index 9e57dd520d..16c63a7523 100644
> --- a/meta-oe/recipes-extended/rsyslog/librelp_1.4.0.bb
> +++ b/meta-oe/recipes-extended/rsyslog/librelp_1.4.0.bb
> @@ -14,3 +14,5 @@ SRCREV = "e96443dda3c080fa991decec26bc4ac98d24b9a2"
> S = "${WORKDIR}/git"
>
> inherit autotools pkgconfig
> +
> +CPPFLAGS += "-Wno-error"
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2019-07-22 9:12 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-07-20 5:14 [meta-oe][PATCH] librelp: Pass Wno-error to compiler Khem Raj
2019-07-22 9:12 ` Robert Yang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox