aboutsummaryrefslogtreecommitdiff
path: root/README.txt
blob: 0f83fccadb718019c046941e42c40e97f802c616 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Running a console based verifier

   java org.apache.bcel.verifier.Verifier fully.qualified.class.Name

 lets JustIce work standalone.
 If you get a "java.lang.OutOfMemoryError", you should increase the
 maximum Java heap space. A command like

   java -Xmx1887436800 org.apache.bcel.verifier.Verifier f.q.c.Name

 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.



Running a graphics based verifier

 If you prefer a graphical application, you should use a command like

   java org.apache.bcel.verifier.GraphicalVerifier

 to launch one. Again, you may have to resolve a memory issue depending
 on the classes to verify.