You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by br...@apache.org on 2016/06/18 12:31:05 UTC

svn commit: r1748982 - in /commons/proper/bcel/trunk: README.txt src/site/xdoc/manual/appendix.xml

Author: britter
Date: Sat Jun 18 12:31:05 2016
New Revision: 1748982

URL: http://svn.apache.org/viewvc?rev=1748982&view=rev
Log:
Move remaining content of README.txt to Appendix of BCEL manual

Removed:
    commons/proper/bcel/trunk/README.txt
Modified:
    commons/proper/bcel/trunk/src/site/xdoc/manual/appendix.xml

Modified: commons/proper/bcel/trunk/src/site/xdoc/manual/appendix.xml
URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/src/site/xdoc/manual/appendix.xml?rev=1748982&r1=1748981&r2=1748982&view=diff
==============================================================================
--- commons/proper/bcel/trunk/src/site/xdoc/manual/appendix.xml (original)
+++ commons/proper/bcel/trunk/src/site/xdoc/manual/appendix.xml Sat Jun 18 12:31:05 2016
@@ -352,6 +352,38 @@ public class Peephole {
         </a>
       </p>
     </subsection>
+      
+    <subsection name="Verifier">
+      
+      <h4>Running a console based verifier</h4>
+
+      <source>
+java org.apache.bcel.verifier.Verifier fully.qualified.class.Name          
+      </source>
+
+      lets JustIce work standalone.
+      If you get a "java.lang.OutOfMemoryError", you should increase the
+      maximum Java heap space. A command like
+
+      <source>
+java -Xmx1887436800 org.apache.bcel.verifier.Verifier f.q.c.Name
+      </source>
+
+      will usually resolve the problem. The value above is suitable for
+      big server machines; if your machine starts swapping to disk, try
+      to lower the value.
+
+      <h4>Running a graphics based verifier</h4>
+
+      If you prefer a graphical application, you should use a command like
+
+      <source>
+java org.apache.bcel.verifier.GraphicalVerifier
+      </source>
+
+      to launch one. Again, you may have to resolve a memory issue depending
+      on the classes to verify.
+    </subsection>
   </section>
   </body>
 </document>
\ No newline at end of file