Reputation: 3842
I have seen an issue with ReduceInitialCardMarks, where sometimes on the same JVM on one machine it does not recognize this VM option were as on another machine it works perfectly fine. The VM does not start. What is making it fail sometimes ? When does an unrecognized VM option occur ?
Upvotes: 0
Views: 27277
Reputation: 3842
The issue is with the VM. Java Server VM recognizes this option while Java Client VM does not.
Upvotes: 4
Reputation: 21728
Type java
without parameters to see that the particular virtual machine supports. Type java -X
to see help on extended options. Especially extended options may not work on other virtual machines, only very few of them (like -Xmx
) are somewhat more standard.
Your question does not contain enough information to advice anything more.
Upvotes: 0