7 ms·
>> As a normal part of the just-in-time compile and execute cycle This means a workaround is running java with -Djava.compiler=NONE, no?
by sp1rit 3y ago
>> As a normal part of the just-in-time compile and execute cycle
This means a workaround is running java with -Djava.compiler=NONE, no?
- przemelek 3y agoI was thinking more about -Xint, or in Docker, or x86 JVM, but my guess is that somebody already tested it ;-) Other thing is that one of developers in my team who is on M1 and 14.4 is able to run Java app, so...
- PhilipRoman 3y agoA better choice would be -Xrs which keeps optimizations enabled, but disables use of SEGV.
- zozbot234 3y agoThis disables use of all signal handlers, which means Java apps will also e.g. fail to quit cleanly in response to issuing SIGQUIT, or hitting ^C at the terminal. Better than "no workaround whatsoever" but far from ideal!