Date: Fri, 06 Oct 2023 17:52:03 +0000 From: bugzilla-noreply@freebsd.org To: java@FreeBSD.org Subject: [Bug 274106] java/openjdk8: fix build with lld 17 Message-ID: <bug-274106-8522-iAewuh9Q9f@https.bugs.freebsd.org/bugzilla/> In-Reply-To: <bug-274106-8522@https.bugs.freebsd.org/bugzilla/> References: <bug-274106-8522@https.bugs.freebsd.org/bugzilla/>
next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D274106 --- Comment #2 from commit-hook@FreeBSD.org --- A commit in branch main references this bug: URL: https://cgit.FreeBSD.org/ports/commit/?id=3Da2f61c3e68e228e7d4186d18672da9d= 39218e289 commit a2f61c3e68e228e7d4186d18672da9d39218e289 Author: Dimitry Andric <dim@FreeBSD.org> AuthorDate: 2023-09-26 08:45:29 +0000 Commit: Dimitry Andric <dim@FreeBSD.org> CommitDate: 2023-10-06 17:48:54 +0000 java/openjdk8: fix build with lld 17 Building java/openjdk8 with lld 17 results in the following link error: Making SA debugger back-end... ld: error: version script assignment of 'SUNWprivate_1.1' to symbol 'ps_getpid' failed: symbol not defined ld: error: version script assignment of 'SUNWprivate_1.1' to symbol 'ps_lcontinue' failed: symbol not defined ld: error: version script assignment of 'SUNWprivate_1.1' to symbol 'ps_lgetxmmregs' failed: symbol not defined ld: error: version script assignment of 'SUNWprivate_1.1' to symbol 'ps_lsetxmmregs' failed: symbol not defined cc: error: linker command failed with exit code 1 (use -v to see invocation) This is because lld 17 defaults to errors when undefined symbols are referenced in linker version scripts. Since there are many of these in openjdk 8, suppress the errors by adding -Wl,--undefined-version to the --with-extra-ldflags configure option. PR: 274106 Approved by: maintainer timeout (10 days) MFH: 2023Q4 java/openjdk8/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --=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-274106-8522-iAewuh9Q9f>