diff mbox series

[04/10] zip lrzsz connman-gnome kea libfm: ignore various issues fatal with gcc-14

Message ID 20240507011455.313230-4-raj.khem@gmail.com
State New
Headers show
Series [01/10] rng-tools: ignore incompatible-pointer-types errors for now | expand

Commit Message

Khem Raj May 7, 2024, 1:14 a.m. UTC
From: Martin Jansa <martin.jansa@gmail.com>

TODO: kea

work arounds for:
oe-core/meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb:do_compile
oe-core/meta/recipes-connectivity/connman/connman-gnome_0.7.bb:do_compile
oe-core/meta/recipes-connectivity/kea/kea_2.4.1.bb:do_compile
oe-core/meta/recipes-support/libfm/libfm_1.3.2.bb:do_compile
oe-core/meta/recipes-extended/zip/zip_3.0.bb:do_compile

http://errors.yoctoproject.org/Errors/Build/183127/

More fixes on ML (especially for -native with gcc-14 on host)
zip: https://lists.openembedded.org/g/openembedded-core/message/198783
cdrtools: https://lists.openembedded.org/g/openembedded-core/message/198899
syslinux: https://lists.openembedded.org/g/openembedded-core/message/198901

Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb                | 6 ++++++
 meta/recipes-connectivity/connman/connman-gnome_0.7.bb | 4 ++++
 meta/recipes-connectivity/kea/kea_2.4.1.bb             | 6 ++++++
 meta/recipes-extended/zip/zip_3.0.bb                   | 5 +++++
 meta/recipes-support/libfm/libfm_1.3.2.bb              | 4 ++++
 5 files changed, 25 insertions(+)

Comments

Martin Jansa May 7, 2024, 5:07 a.m. UTC | #1
kea should be dropped from this (commit message as well as the bbfile)
I had a fix in my jansa/master-gcc14 branch and now you have a
different one in this series, so the TODO here doesn't make sense
anymore, you can pick it from:
https://git.openembedded.org/openembedded-core-contrib/commit/?h=jansa/master-gcc14&id=4c89509e37f86f4d8e0bfce6135e6eaefd9e216f
as mentioned yesterday

On Tue, May 7, 2024 at 3:15 AM Khem Raj <raj.khem@gmail.com> wrote:
>
> From: Martin Jansa <martin.jansa@gmail.com>
>
> TODO: kea
>
> work arounds for:
> oe-core/meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb:do_compile
> oe-core/meta/recipes-connectivity/connman/connman-gnome_0.7.bb:do_compile
> oe-core/meta/recipes-connectivity/kea/kea_2.4.1.bb:do_compile
> oe-core/meta/recipes-support/libfm/libfm_1.3.2.bb:do_compile
> oe-core/meta/recipes-extended/zip/zip_3.0.bb:do_compile
>
> http://errors.yoctoproject.org/Errors/Build/183127/
>
> More fixes on ML (especially for -native with gcc-14 on host)
> zip: https://lists.openembedded.org/g/openembedded-core/message/198783
> cdrtools: https://lists.openembedded.org/g/openembedded-core/message/198899
> syslinux: https://lists.openembedded.org/g/openembedded-core/message/198901
>
> Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
> ---
>  meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb                | 6 ++++++
>  meta/recipes-connectivity/connman/connman-gnome_0.7.bb | 4 ++++
>  meta/recipes-connectivity/kea/kea_2.4.1.bb             | 6 ++++++
>  meta/recipes-extended/zip/zip_3.0.bb                   | 5 +++++
>  meta/recipes-support/libfm/libfm_1.3.2.bb              | 4 ++++
>  5 files changed, 25 insertions(+)
>
> diff --git a/meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb b/meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb
> index 63edcbd8643..3024ddcaf07 100644
> --- a/meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb
> +++ b/meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb
> @@ -46,3 +46,9 @@ ALTERNATIVE_TARGET[rb] = "${bindir}/lrz"
>  ALTERNATIVE_TARGET[sz] = "${bindir}/lsz"
>  ALTERNATIVE_TARGET[sx] = "${bindir}/lsz"
>  ALTERNATIVE_TARGET[sb] = "${bindir}/lsz"
> +
> +# http://errors.yoctoproject.org/Errors/Details/766929/
> +# lrzsz-0.12.20/src/tcp.c:75:56: error: passing argument 3 of 'getsockname' from incompatible pointer type [-Wincompatible-pointer-types]
> +# lrzsz-0.12.20/src/tcp.c:83:52: error: passing argument 3 of 'getsockname' from incompatible pointer type [-Wincompatible-pointer-types]
> +# lrzsz-0.12.20/src/tcp.c:103:51: error: passing argument 3 of 'accept' from incompatible pointer type [-Wincompatible-pointer-types]
> +CFLAGS += "-Wno-error=incompatible-pointer-types"
> diff --git a/meta/recipes-connectivity/connman/connman-gnome_0.7.bb b/meta/recipes-connectivity/connman/connman-gnome_0.7.bb
> index f6150d98ec9..46b3f854c52 100644
> --- a/meta/recipes-connectivity/connman/connman-gnome_0.7.bb
> +++ b/meta/recipes-connectivity/connman/connman-gnome_0.7.bb
> @@ -28,3 +28,7 @@ RDEPENDS:${PN} = "connman"
>  do_install:append() {
>      install -m 0644 ${UNPACKDIR}/images/* ${D}/usr/share/icons/hicolor/22x22/apps/
>  }
> +
> +# http://errors.yoctoproject.org/Errors/Details/766926/
> +# connman-client.c:200:15: error: assignment to 'GtkTreeModel *' {aka 'struct _GtkTreeModel *'} from incompatible pointer type 'GtkTreeStore *' {aka 'struct _GtkTreeStore *'} [-Wincompatible-pointer-types]
> +CFLAGS += "-Wno-error=incompatible-pointer-types"
> diff --git a/meta/recipes-connectivity/kea/kea_2.4.1.bb b/meta/recipes-connectivity/kea/kea_2.4.1.bb
> index 6c1e457938a..fc963e545ad 100644
> --- a/meta/recipes-connectivity/kea/kea_2.4.1.bb
> +++ b/meta/recipes-connectivity/kea/kea_2.4.1.bb
> @@ -75,3 +75,9 @@ FILES:${PN}-staticdev += "${libdir}/kea/hooks/*.a ${libdir}/hooks/*.a"
>  FILES:${PN} += "${libdir}/hooks/*.so"
>
>  PARALLEL_MAKEINST = ""
> +
> +# http://errors.yoctoproject.org/Errors/Details/766928/
> +# TOPDIR/BUILD/work/qemux86_64-webos-linux/kea/2.4.1/recipe-sysroot-native/usr/bin/x86_64-webos-linux/../../libexec/x86_64-webos-linux/gcc/x86_64-webos-linux/14.0.1/ld: ./.libs/libdhcp4.a(dhcp4_srv.o): in function `isc::dhcp::OptionDescriptor isc::dhcp::CfgOption::get<char [6]>(char const (&) [6], unsigned short) const':
> +# /usr/src/debug/kea/2.4.1/src/lib/dhcpsrv/cfg_option.h:608:(.text._ZNK3isc4dhcp9CfgOption3getIA6_cEENS0_16OptionDescriptorERKT_t[_ZNK3isc4dhcp9CfgOption3getIA6_cEENS0_16OptionDescriptorERKT_t]+0x85): undefined reference to `isc::dhcp::CfgOption::getAll(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const'
> +# collect2: error: ld returned 1 exit status
> +# TODO: Fix for gcc-14
> diff --git a/meta/recipes-extended/zip/zip_3.0.bb b/meta/recipes-extended/zip/zip_3.0.bb
> index 70df5ab8728..e7705b8faf4 100644
> --- a/meta/recipes-extended/zip/zip_3.0.bb
> +++ b/meta/recipes-extended/zip/zip_3.0.bb
> @@ -53,3 +53,8 @@ BBCLASSEXTEND = "native"
>
>  # exclude version 2.3.2 which triggers a false positive
>  UPSTREAM_CHECK_REGEX = "^zip(?P<pver>(?!232).+)\.tgz"
> +
> +# http://errors.yoctoproject.org/Errors/Details/766953/
> +# unix/unix.c:84:51: error: passing argument 4 of 'fread' from incompatible pointer type [-Wincompatible-pointer-types]
> +CFLAGS += "-Wno-error=incompatible-pointer-types"
> +# proper fix on ML: https://lists.openembedded.org/g/openembedded-core/message/198783
> diff --git a/meta/recipes-support/libfm/libfm_1.3.2.bb b/meta/recipes-support/libfm/libfm_1.3.2.bb
> index 057c7370293..1d7609165b4 100644
> --- a/meta/recipes-support/libfm/libfm_1.3.2.bb
> +++ b/meta/recipes-support/libfm/libfm_1.3.2.bb
> @@ -53,3 +53,7 @@ do_install:append () {
>      rm -f ${D}${libdir}/libfm-extra.a
>      rm -f ${D}${libdir}/libfm-extra.la
>  }
> +
> +# http://errors.yoctoproject.org/Errors/Details/766924/
> +# libfm-1.3.2/src/actions/action.c:2050:25: error: assignment to 'gchar **' {aka 'char **'} from incompatible pointer type 'const gchar * const*' {aka 'const char * const*'} [-Wincompatible-pointer-types]
> +CFLAGS += "-Wno-error=incompatible-pointer-types"
> --
> 2.45.0
>
Khem Raj May 7, 2024, 5:25 a.m. UTC | #2
On Mon, May 6, 2024 at 10:07 PM Martin Jansa <martin.jansa@gmail.com> wrote:
>
> kea should be dropped from this (commit message as well as the bbfile)
> I had a fix in my jansa/master-gcc14 branch and now you have a
> different one in this series, so the TODO here doesn't make sense
> anymore, you can pick it from:
> https://git.openembedded.org/openembedded-core-contrib/commit/?h=jansa/master-gcc14&id=4c89509e37f86f4d8e0bfce6135e6eaefd9e216f
> as mentioned yesterday

Thanks. I missed it, I think I picked it now.

>
> On Tue, May 7, 2024 at 3:15 AM Khem Raj <raj.khem@gmail.com> wrote:
> >
> > From: Martin Jansa <martin.jansa@gmail.com>
> >
> > TODO: kea
> >
> > work arounds for:
> > oe-core/meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb:do_compile
> > oe-core/meta/recipes-connectivity/connman/connman-gnome_0.7.bb:do_compile
> > oe-core/meta/recipes-connectivity/kea/kea_2.4.1.bb:do_compile
> > oe-core/meta/recipes-support/libfm/libfm_1.3.2.bb:do_compile
> > oe-core/meta/recipes-extended/zip/zip_3.0.bb:do_compile
> >
> > http://errors.yoctoproject.org/Errors/Build/183127/
> >
> > More fixes on ML (especially for -native with gcc-14 on host)
> > zip: https://lists.openembedded.org/g/openembedded-core/message/198783
> > cdrtools: https://lists.openembedded.org/g/openembedded-core/message/198899
> > syslinux: https://lists.openembedded.org/g/openembedded-core/message/198901
> >
> > Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
> > Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > ---
> >  meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb                | 6 ++++++
> >  meta/recipes-connectivity/connman/connman-gnome_0.7.bb | 4 ++++
> >  meta/recipes-connectivity/kea/kea_2.4.1.bb             | 6 ++++++
> >  meta/recipes-extended/zip/zip_3.0.bb                   | 5 +++++
> >  meta/recipes-support/libfm/libfm_1.3.2.bb              | 4 ++++
> >  5 files changed, 25 insertions(+)
> >
> > diff --git a/meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb b/meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb
> > index 63edcbd8643..3024ddcaf07 100644
> > --- a/meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb
> > +++ b/meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb
> > @@ -46,3 +46,9 @@ ALTERNATIVE_TARGET[rb] = "${bindir}/lrz"
> >  ALTERNATIVE_TARGET[sz] = "${bindir}/lsz"
> >  ALTERNATIVE_TARGET[sx] = "${bindir}/lsz"
> >  ALTERNATIVE_TARGET[sb] = "${bindir}/lsz"
> > +
> > +# http://errors.yoctoproject.org/Errors/Details/766929/
> > +# lrzsz-0.12.20/src/tcp.c:75:56: error: passing argument 3 of 'getsockname' from incompatible pointer type [-Wincompatible-pointer-types]
> > +# lrzsz-0.12.20/src/tcp.c:83:52: error: passing argument 3 of 'getsockname' from incompatible pointer type [-Wincompatible-pointer-types]
> > +# lrzsz-0.12.20/src/tcp.c:103:51: error: passing argument 3 of 'accept' from incompatible pointer type [-Wincompatible-pointer-types]
> > +CFLAGS += "-Wno-error=incompatible-pointer-types"
> > diff --git a/meta/recipes-connectivity/connman/connman-gnome_0.7.bb b/meta/recipes-connectivity/connman/connman-gnome_0.7.bb
> > index f6150d98ec9..46b3f854c52 100644
> > --- a/meta/recipes-connectivity/connman/connman-gnome_0.7.bb
> > +++ b/meta/recipes-connectivity/connman/connman-gnome_0.7.bb
> > @@ -28,3 +28,7 @@ RDEPENDS:${PN} = "connman"
> >  do_install:append() {
> >      install -m 0644 ${UNPACKDIR}/images/* ${D}/usr/share/icons/hicolor/22x22/apps/
> >  }
> > +
> > +# http://errors.yoctoproject.org/Errors/Details/766926/
> > +# connman-client.c:200:15: error: assignment to 'GtkTreeModel *' {aka 'struct _GtkTreeModel *'} from incompatible pointer type 'GtkTreeStore *' {aka 'struct _GtkTreeStore *'} [-Wincompatible-pointer-types]
> > +CFLAGS += "-Wno-error=incompatible-pointer-types"
> > diff --git a/meta/recipes-connectivity/kea/kea_2.4.1.bb b/meta/recipes-connectivity/kea/kea_2.4.1.bb
> > index 6c1e457938a..fc963e545ad 100644
> > --- a/meta/recipes-connectivity/kea/kea_2.4.1.bb
> > +++ b/meta/recipes-connectivity/kea/kea_2.4.1.bb
> > @@ -75,3 +75,9 @@ FILES:${PN}-staticdev += "${libdir}/kea/hooks/*.a ${libdir}/hooks/*.a"
> >  FILES:${PN} += "${libdir}/hooks/*.so"
> >
> >  PARALLEL_MAKEINST = ""
> > +
> > +# http://errors.yoctoproject.org/Errors/Details/766928/
> > +# TOPDIR/BUILD/work/qemux86_64-webos-linux/kea/2.4.1/recipe-sysroot-native/usr/bin/x86_64-webos-linux/../../libexec/x86_64-webos-linux/gcc/x86_64-webos-linux/14.0.1/ld: ./.libs/libdhcp4.a(dhcp4_srv.o): in function `isc::dhcp::OptionDescriptor isc::dhcp::CfgOption::get<char [6]>(char const (&) [6], unsigned short) const':
> > +# /usr/src/debug/kea/2.4.1/src/lib/dhcpsrv/cfg_option.h:608:(.text._ZNK3isc4dhcp9CfgOption3getIA6_cEENS0_16OptionDescriptorERKT_t[_ZNK3isc4dhcp9CfgOption3getIA6_cEENS0_16OptionDescriptorERKT_t]+0x85): undefined reference to `isc::dhcp::CfgOption::getAll(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const'
> > +# collect2: error: ld returned 1 exit status
> > +# TODO: Fix for gcc-14
> > diff --git a/meta/recipes-extended/zip/zip_3.0.bb b/meta/recipes-extended/zip/zip_3.0.bb
> > index 70df5ab8728..e7705b8faf4 100644
> > --- a/meta/recipes-extended/zip/zip_3.0.bb
> > +++ b/meta/recipes-extended/zip/zip_3.0.bb
> > @@ -53,3 +53,8 @@ BBCLASSEXTEND = "native"
> >
> >  # exclude version 2.3.2 which triggers a false positive
> >  UPSTREAM_CHECK_REGEX = "^zip(?P<pver>(?!232).+)\.tgz"
> > +
> > +# http://errors.yoctoproject.org/Errors/Details/766953/
> > +# unix/unix.c:84:51: error: passing argument 4 of 'fread' from incompatible pointer type [-Wincompatible-pointer-types]
> > +CFLAGS += "-Wno-error=incompatible-pointer-types"
> > +# proper fix on ML: https://lists.openembedded.org/g/openembedded-core/message/198783
> > diff --git a/meta/recipes-support/libfm/libfm_1.3.2.bb b/meta/recipes-support/libfm/libfm_1.3.2.bb
> > index 057c7370293..1d7609165b4 100644
> > --- a/meta/recipes-support/libfm/libfm_1.3.2.bb
> > +++ b/meta/recipes-support/libfm/libfm_1.3.2.bb
> > @@ -53,3 +53,7 @@ do_install:append () {
> >      rm -f ${D}${libdir}/libfm-extra.a
> >      rm -f ${D}${libdir}/libfm-extra.la
> >  }
> > +
> > +# http://errors.yoctoproject.org/Errors/Details/766924/
> > +# libfm-1.3.2/src/actions/action.c:2050:25: error: assignment to 'gchar **' {aka 'char **'} from incompatible pointer type 'const gchar * const*' {aka 'const char * const*'} [-Wincompatible-pointer-types]
> > +CFLAGS += "-Wno-error=incompatible-pointer-types"
> > --
> > 2.45.0
> >
diff mbox series

Patch

diff --git a/meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb b/meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb
index 63edcbd8643..3024ddcaf07 100644
--- a/meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb
+++ b/meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb
@@ -46,3 +46,9 @@  ALTERNATIVE_TARGET[rb] = "${bindir}/lrz"
 ALTERNATIVE_TARGET[sz] = "${bindir}/lsz"
 ALTERNATIVE_TARGET[sx] = "${bindir}/lsz"
 ALTERNATIVE_TARGET[sb] = "${bindir}/lsz"
+
+# http://errors.yoctoproject.org/Errors/Details/766929/
+# lrzsz-0.12.20/src/tcp.c:75:56: error: passing argument 3 of 'getsockname' from incompatible pointer type [-Wincompatible-pointer-types]
+# lrzsz-0.12.20/src/tcp.c:83:52: error: passing argument 3 of 'getsockname' from incompatible pointer type [-Wincompatible-pointer-types]
+# lrzsz-0.12.20/src/tcp.c:103:51: error: passing argument 3 of 'accept' from incompatible pointer type [-Wincompatible-pointer-types]
+CFLAGS += "-Wno-error=incompatible-pointer-types"
diff --git a/meta/recipes-connectivity/connman/connman-gnome_0.7.bb b/meta/recipes-connectivity/connman/connman-gnome_0.7.bb
index f6150d98ec9..46b3f854c52 100644
--- a/meta/recipes-connectivity/connman/connman-gnome_0.7.bb
+++ b/meta/recipes-connectivity/connman/connman-gnome_0.7.bb
@@ -28,3 +28,7 @@  RDEPENDS:${PN} = "connman"
 do_install:append() {
     install -m 0644 ${UNPACKDIR}/images/* ${D}/usr/share/icons/hicolor/22x22/apps/
 }
+
+# http://errors.yoctoproject.org/Errors/Details/766926/
+# connman-client.c:200:15: error: assignment to 'GtkTreeModel *' {aka 'struct _GtkTreeModel *'} from incompatible pointer type 'GtkTreeStore *' {aka 'struct _GtkTreeStore *'} [-Wincompatible-pointer-types]
+CFLAGS += "-Wno-error=incompatible-pointer-types"
diff --git a/meta/recipes-connectivity/kea/kea_2.4.1.bb b/meta/recipes-connectivity/kea/kea_2.4.1.bb
index 6c1e457938a..fc963e545ad 100644
--- a/meta/recipes-connectivity/kea/kea_2.4.1.bb
+++ b/meta/recipes-connectivity/kea/kea_2.4.1.bb
@@ -75,3 +75,9 @@  FILES:${PN}-staticdev += "${libdir}/kea/hooks/*.a ${libdir}/hooks/*.a"
 FILES:${PN} += "${libdir}/hooks/*.so"
 
 PARALLEL_MAKEINST = ""
+
+# http://errors.yoctoproject.org/Errors/Details/766928/
+# TOPDIR/BUILD/work/qemux86_64-webos-linux/kea/2.4.1/recipe-sysroot-native/usr/bin/x86_64-webos-linux/../../libexec/x86_64-webos-linux/gcc/x86_64-webos-linux/14.0.1/ld: ./.libs/libdhcp4.a(dhcp4_srv.o): in function `isc::dhcp::OptionDescriptor isc::dhcp::CfgOption::get<char [6]>(char const (&) [6], unsigned short) const':
+# /usr/src/debug/kea/2.4.1/src/lib/dhcpsrv/cfg_option.h:608:(.text._ZNK3isc4dhcp9CfgOption3getIA6_cEENS0_16OptionDescriptorERKT_t[_ZNK3isc4dhcp9CfgOption3getIA6_cEENS0_16OptionDescriptorERKT_t]+0x85): undefined reference to `isc::dhcp::CfgOption::getAll(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const'
+# collect2: error: ld returned 1 exit status
+# TODO: Fix for gcc-14
diff --git a/meta/recipes-extended/zip/zip_3.0.bb b/meta/recipes-extended/zip/zip_3.0.bb
index 70df5ab8728..e7705b8faf4 100644
--- a/meta/recipes-extended/zip/zip_3.0.bb
+++ b/meta/recipes-extended/zip/zip_3.0.bb
@@ -53,3 +53,8 @@  BBCLASSEXTEND = "native"
 
 # exclude version 2.3.2 which triggers a false positive
 UPSTREAM_CHECK_REGEX = "^zip(?P<pver>(?!232).+)\.tgz"
+
+# http://errors.yoctoproject.org/Errors/Details/766953/
+# unix/unix.c:84:51: error: passing argument 4 of 'fread' from incompatible pointer type [-Wincompatible-pointer-types]
+CFLAGS += "-Wno-error=incompatible-pointer-types"
+# proper fix on ML: https://lists.openembedded.org/g/openembedded-core/message/198783
diff --git a/meta/recipes-support/libfm/libfm_1.3.2.bb b/meta/recipes-support/libfm/libfm_1.3.2.bb
index 057c7370293..1d7609165b4 100644
--- a/meta/recipes-support/libfm/libfm_1.3.2.bb
+++ b/meta/recipes-support/libfm/libfm_1.3.2.bb
@@ -53,3 +53,7 @@  do_install:append () {
     rm -f ${D}${libdir}/libfm-extra.a
     rm -f ${D}${libdir}/libfm-extra.la
 }
+
+# http://errors.yoctoproject.org/Errors/Details/766924/
+# libfm-1.3.2/src/actions/action.c:2050:25: error: assignment to 'gchar **' {aka 'char **'} from incompatible pointer type 'const gchar * const*' {aka 'const char * const*'} [-Wincompatible-pointer-types]
+CFLAGS += "-Wno-error=incompatible-pointer-types"