2004/01/27 05:12:03
[org.ibex.core.git] / jode.conf
1 classpath = "build/","upstream/install/share/java/libgcj-3.3.jar","build/class"
2 dest = "out"
3 strip = "unreach","lvt"
4 #,"inner"
5
6 #renamer = new UniqueRenamer
7
8 load = new WildCard { value = "org.xwt.*" },
9        new WildCard { value = "gnu.*" },
10        new WildCard { value = "org.bouncycastle.*" },
11        new WildCard { value = "edu.*" },
12        new WildCard { value = "java.*" }
13
14 preserve = new WildCard { value = "org.xwt.Main" },
15            new WildCard { value = "org.xwt.plat.Linux" }
16
17 #           new MultiIdentifierMatcher { 
18 #               and = new WildCard { value = "org.myorg.publiclib.*" },
19 #                    new ModifierMatcher { access = "PUBLIC" }
20 #          }
21
22 analyzer = new ConstantAnalyzer
23
24 # The LocalOptimizer will reorder local variables to use fewer slots.
25 # It may still have some bugs, so remove it if your applet doesn't
26 # work (and send me the class).
27 # The RemovePopAnalyzer will remove instructions that were optimized
28 # away by the ConstantAnalyzer and LocalOptimizer.
29 #post = new RemovePopAnalyzer
30
31