# HG changeset patch # User Andrew John Hughes # Date 1603835350 0 # Node ID 03c085bd7eee4a8efe724630bc5b48e831035338 # Parent d97ed9be7d62327c6aecc0e33582a5722ba3c5de PR3810: Enable JFR on x86 (32-bit) now that JDK-8252096 has fixed its use with Shenandoah 2020-10-27 Andrew John Hughes PR3810: Enable JFR on x86 (32-bit) now that JDK-8252096 has fixed its use with Shenandoah * NEWS: Updated. * acinclude.m4: (IT_ARCH_HAS_JFR): Allow JFR on i?86. diff -r d97ed9be7d62 -r 03c085bd7eee ChangeLog --- a/ChangeLog Tue Oct 27 18:43:08 2020 +0000 +++ b/ChangeLog Tue Oct 27 21:49:10 2020 +0000 @@ -1,3 +1,11 @@ +2020-10-27 Andrew John Hughes + + PR3810: Enable JFR on x86 (32-bit) now that + JDK-8252096 has fixed its use with Shenandoah + * NEWS: Updated. + * acinclude.m4: + (IT_ARCH_HAS_JFR): Allow JFR on i?86. + 2020-10-27 Andrew John Hughes Bump to icedtea-3.17.0. diff -r d97ed9be7d62 -r 03c085bd7eee NEWS --- a/NEWS Tue Oct 27 18:43:08 2020 +0000 +++ b/NEWS Tue Oct 27 21:49:10 2020 +0000 @@ -398,6 +398,7 @@ - PR3795: ECDSAUtils for XML digital signatures should support the same curve set as the rest of the JDK - PR3799: Adapt elliptic curve patches to JDK-8245468: Add TLSv1.3 implementation classes from 11.0.7 - PR3808: IcedTea does not install the JFR *.jfc files + - PR3810: Enable JFR on x86 (32-bit) now that JDK-8252096 has fixed its use with Shenandoah * Shenandoah - [backport] 8221435: Shenandoah should not mark through weak roots - [backport] 8221629: Shenandoah: Cleanup class unloading logic diff -r d97ed9be7d62 -r 03c085bd7eee acinclude.m4 --- a/acinclude.m4 Tue Oct 27 18:43:08 2020 +0000 +++ b/acinclude.m4 Tue Oct 27 21:49:10 2020 +0000 @@ -2874,7 +2874,7 @@ supports_jfr=yes; case "${host_cpu}" in aarch64|arm64) if test "x${HSBUILD}" = "xaarch32"; then supports_jfr=no; fi ;; - i?86) supports_jfr=no ;; + i?86) ;; sparc) ;; x86_64) ;; powerpc64) ;;