Difference between noverify and Xverify:none?
Asked Answered
C

1

9

What is the difference between the JVM arguments noverify and Xverify:none?

Cutch answered 25/12, 2015 at 17:59 Comment(0)
A
9

They are the same.

-X represents a non-standard argument. Non-standard arguments only work for certain VMs (hence the name non-standard). noverify is simply a shortcut for Xverify:none.

Why have both? I don't think you'll get a real answer unless you asked the developers - it's not documented (as far as I can see). My best guess would be to stay consistent and to lower verbosity.

This is speculation, but reason for noverify existing could be based on how often developers use -Xverify:true. If verification is enabled by default, there's not much reason to use -Xverify:true, thus -Xverify:false would be the primary reason for using the -Xverify argument, hence the noverify shorthand.

Aduwa answered 25/12, 2015 at 18:29 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.