Date: Sat, 31 Aug 2024 08:33:53 +0000 From: bugzilla-noreply@freebsd.org To: ports-bugs@FreeBSD.org Subject: [Bug 281150] java/openjdk11: fix build with clang 19 on i386 Message-ID: <bug-281150-7788@https.bugs.freebsd.org/bugzilla/>
next in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D281150 Bug ID: 281150 Summary: java/openjdk11: fix build with clang 19 on i386 Product: Ports & Packages Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: Individual Port(s) Assignee: java@FreeBSD.org Reporter: dim@FreeBSD.org Flags: maintainer-feedback?(java@FreeBSD.org) Assignee: java@FreeBSD.org Clang 19 has a number of new warnings, and because java/openjdk11 compiles with -Werror by default, on i386 it results in errors similar to: =20=20=20 /wrkdirs/usr/ports/java/openjdk11/work/jdk11u-jdk-11.0.24-8-1/src/java.desk= top/share/native/libharfbuzz/graph/../hb-algs.hh:1332:18: error: builtin __has_trivial_assign is deprecated; use __is_trivially_assignable instead [-Werror,-Wdeprecated-builtins] 1332 | static_assert (hb_is_trivially_copy_assignable (T), ""); | ^ =20=20=20 /wrkdirs/usr/ports/java/openjdk11/work/jdk11u-jdk-11.0.24-8-1/src/java.desk= top/share/native/libharfbuzz/graph/../hb-meta.hh:204:44: note: expanded from macro 'hb_is_trivially_copy_assignable' 204 | #define hb_is_trivially_copy_assignable(T) __has_trivial_assign= (T) | ^ I propose to disable warnings-as-errors for this port, similar to what is already done for openjdk17. It does not make sense to have this on by default, unless you are an upstream maintainer. --=20 You are receiving this mail because: You are the assignee for the bug.=
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-281150-7788>