1 | # $Id: abcl.properties.in 14740 2015-01-04 16:29:22Z mevenson $ |
---|
2 | |
---|
3 | # XXX should be called 'build.properties' but this collides with its |
---|
4 | # usage by the Eclipe IDE |
---|
5 | |
---|
6 | # Template for Ant based build process settings. |
---|
7 | |
---|
8 | # Copy to 'abcl.properties' to set options to local builds. |
---|
9 | |
---|
10 | # Attempt to perform incremental compilation? |
---|
11 | abcl.build.incremental=true |
---|
12 | |
---|
13 | # Additional site specific startup code to be merged in 'system.lisp' at build time |
---|
14 | #abcl.startup.file=${basedir}/startup.lisp |
---|
15 | |
---|
16 | ## java.options sets the Java options in the abcl wrapper scripts |
---|
17 | |
---|
18 | # Reasonable defaults for Java 8 |
---|
19 | java.options=-d64 -XX:+UseG1GC -XshowSettings:vm |
---|
20 | |
---|
21 | # Reasonable defaults for circa-2012, ORCL JVM implementations |
---|
22 | #java.options=-d64 -XX:+CMSClassUnloadingEnabled -XX:MaxPermSize=1g -XX:+UseConcMarkSweepGC |
---|
23 | |
---|
24 | # See |
---|
25 | # http://www.oracle.com/technetwork/java/javase/tech/vmoptions-jsp-140102.html |
---|
26 | # for options for the Oracle HotSpot JVM. |
---|
27 | |
---|
28 | # Java7 on 64bit optimizations |
---|
29 | #java.options=-d64 -Xmx16g -XX:+CMSClassUnloadingEnabled -XX:MaxPermSize=2g |
---|
30 | |
---|
31 | # Set the JVM to use a maximum of 1GB of RAM (only works for 64bit JVMs) |
---|
32 | #java.options=-d64 -Xmx1g |
---|
33 | |
---|
34 | # Use the G1 garbage collector stablized with jdk1.7.0_04, printing GC details |
---|
35 | #java.options=-d64 -Xmx4g -XX:+PrintGCDetails -XX:+UseG1GC |
---|
36 | |
---|
37 | # Use a separate concurrent GC thread (java-1.6_14 or later) |
---|
38 | #java.options=-d64 -Xmx8g -XX:+UseConcMarkSweepGC |
---|
39 | |
---|
40 | # Java 5 era (???) flag to GC class definitions |
---|
41 | #java.options=-XX:+CMSPermGenSweepingEnabled |
---|
42 | |
---|
43 | # The unloading of class definitions is a per jvm policy. For those |
---|
44 | # implementations which run out of permgen space, the following should |
---|
45 | # help things out. |
---|
46 | #java.options=-d64 -XX:+CMSClassUnloadingEnabled -XX:MaxPermSize=1g |
---|
47 | |
---|
48 | # Enable assertions specified via the JVM contract |
---|
49 | # TODO move all use of org.armedbear.lisp.Debug assertions to this interface. |
---|
50 | #java.options=-ea |
---|
51 | |
---|
52 | ## ABCL Development |
---|
53 | |
---|
54 | # skips the compilation of Lisp sources in Netbeans |
---|
55 | # (for debugging compiler-pass1.lisp and subsequent passes) |
---|
56 | #abcl.compile.lisp.skip=true |
---|
57 | |
---|
58 | # JVM option to execute when debugging the Lisp compilation via 'abcl.compile.lisp.debug' |
---|
59 | # Debug the compilation by connecting a JVM debugger to localhost:6789 via JDWP. |
---|
60 | #abcl.compile.lisp.debug.jvmarg=-agentlib:jdwp=transport=dt_socket,server=y,address=6789,suspend=y |
---|
61 | |
---|
62 | |
---|
63 | |
---|