mbien commented on PR #9331:
URL: https://github.com/apache/netbeans/pull/9331#issuecomment-4243357412
devbuild `testrun.sh:`
```
netbeans/bin/netbeans --userdir /tmp/nb24282437907 --jdkhome
/home/mbien/dev/java/jdk-26.0.0.35.2-corretto -J-Dnetbeans.projects.dir=/tmp\
-J-XX:+PrintFlagsFinal
```
```
$ sh testrun.sh | grep "command line"
bool HeapDumpOnOutOfMemoryError = true
{manageable} {command line}
ccstr HeapDumpPath =
/tmp/nb24282437907/var/log/heapdump.hprof {manageable} {command line}
bool IgnoreUnrecognizedVMOptions = true
{product} {command line}
bool PrintFlagsFinal = true
{product} {command line}
intx ThreadStackSize = 2048
{pd product} {command line}
bool UseCompactObjectHeaders = true
{product lp64_product} {command line}
bool UseStringDeduplication = true
{product} {command line}
```
now with:
```
netbeans/bin/netbeans --userdir /tmp/nb24282437907 --jdkhome
/home/mbien/dev/java/jdk-26.0.0.35.2-corretto -J-Dnetbeans.projects.dir=/tmp\
-J-XX:+PrintFlagsFinal -J-XX:-UseCompactObjectHeaders
```
```
$ sh testrun.sh | grep "command line"
bool HeapDumpOnOutOfMemoryError = true
{manageable} {command line}
ccstr HeapDumpPath =
/tmp/nb24282437907/var/log/heapdump.hprof {manageable} {command line}
bool IgnoreUnrecognizedVMOptions = true
{product} {command line}
bool PrintFlagsFinal = true
{product} {command line}
intx ThreadStackSize = 2048
{pd product} {command line}
bool UseCompactObjectHeaders = false
{product lp64_product} {command line}
bool UseStringDeduplication = true
{product} {command line}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists