Re: RFR: 8240567: MethodTooLargeException thrown while creating a jlink image [v3]

2023-06-14 Thread Oliver Kopp
> Fix for [JDK-8240567](https://bugs.openjdk.org/browse/JDK-8240567): > "MethodTooLargeException thrown while creating a jlink image". > > Java still has a 64kb limit: A method may not be longer than 64kb. The idea > of the fix is to split up the generated methods in several smaller methods > >

Re: RFR: 8240567: MethodTooLargeException thrown while creating a jlink image [v3]

2022-10-14 Thread Oliver Kopp
On Fri, 14 Oct 2022 16:07:44 GMT, Alan Bateman wrote: >> Oliver Kopp has updated the pull request incrementally with one additional >> commit since the last revision: >> >> Reduce number of included ModuleDescriptors > > src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/SystemModul

Re: RFR: 8240567: MethodTooLargeException thrown while creating a jlink image [v3]

2022-10-14 Thread Alan Bateman
On Fri, 14 Oct 2022 16:02:21 GMT, Oliver Kopp wrote: >> Fix for [JDK-8240567](https://bugs.openjdk.org/browse/JDK-8240567): >> "MethodTooLargeException thrown while creating a jlink image". >> >> Java still has a 64kb limit: A method may not be longer than 64kb. The idea >> of the fix is to sp

Re: RFR: 8240567: MethodTooLargeException thrown while creating a jlink image [v3]

2022-10-14 Thread Oliver Kopp
> Fix for [JDK-8240567](https://bugs.openjdk.org/browse/JDK-8240567): > "MethodTooLargeException thrown while creating a jlink image". > > Java still has a 64kb limit: A method may not be longer than 64kb. The idea > of the fix is to split up the generated methods in several smaller methods Oli