Closed JasonFengJ9 closed 1 year ago
Upstream has adopted a newer version of harfbuzz. I expect AIX builds will fail unless the rest of https://github.com/ibmruntimes/openj9-openjdk-jdk21/pull/24 is applied here.
Concretely, in hb-map.hh
the definitions of keys()
and values()
near line 348 should be
auto keys () const HB_AUTO_RETURN
(
+ keys_ref ()
| hb_map (hb_ridentity)
)
and
auto values () const HB_AUTO_RETURN
(
+ values_ref ()
| hb_map (hb_ridentity)
)
See also https://github.com/ibmruntimes/openj9-openjdk-jdk17/pull/244.
Passed an internal build
Merge master
jdk-11.0.21+1
intoopenj9-staging
Resolved conflicts:
Modified:
Signed-off-by: Jason Feng fengj@ca.ibm.com