[Bug 274106] java/openjdk8: fix build with lld 17

From: <bugzilla-noreply_at_freebsd.org>
Date: Fri, 06 Oct 2023 17:52:03 UTC
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=274106

--- Comment #2 from commit-hook@FreeBSD.org ---
A commit in branch main references this bug:

URL:
https://cgit.FreeBSD.org/ports/commit/?id=a2f61c3e68e228e7d4186d18672da9d39218e289

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(-)

-- 
You are receiving this mail because:
You are the assignee for the bug.