| 1 | # $Id: abcl.properties.in 13729 2012-01-09 09:55:58Z mevenson $ |
|---|
| 2 | |
|---|
| 3 | # XXX should be called 'build.properties' but this collides with its usage by the Eclipe IDE |
|---|
| 4 | |
|---|
| 5 | # Template for settings the Ant based build process. |
|---|
| 6 | |
|---|
| 7 | |
|---|
| 8 | # Attempt to perform incremental compilation? |
|---|
| 9 | #abcl.build.incremental=true |
|---|
| 10 | |
|---|
| 11 | # skips the compilation of Lisp sources in Netbeans |
|---|
| 12 | # (for debugging compiler-pass1.lisp and subsequent passes) |
|---|
| 13 | #abcl.compile.lisp.skip=true |
|---|
| 14 | |
|---|
| 15 | # java.options sets the Java options in the abcl wrapper scripts |
|---|
| 16 | |
|---|
| 17 | # Examples: |
|---|
| 18 | |
|---|
| 19 | # Java7 on 64bit optimizations |
|---|
| 20 | #java.options=-d64 -Xmx16g -XX:+CMSClassUnloadingEnabled -XX:MaxPermSize=2g |
|---|
| 21 | |
|---|
| 22 | # Set the JVM to use a maximum of 1GB of RAM (only works for 64bit JVMs) |
|---|
| 23 | #java.options=-d64 -Xmx1g |
|---|
| 24 | |
|---|
| 25 | # Use a default garbage collector on another |
|---|
| 26 | #java.options=-d64 -Xmx4g -XX:+PrintGCDetails -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:MaxGCPauseMillis=100 |
|---|
| 27 | |
|---|
| 28 | # Use a separate concurrent GC thread (java-1.6_14 or later) |
|---|
| 29 | #java.options=-d64 -Xmx8g -XX:+UseConcMarkSweepGC |
|---|
| 30 | |
|---|
| 31 | # Java 5 era (???) flag to GC class definitions |
|---|
| 32 | #java.options=-XX:+CMSPermGenSweepingEnabled |
|---|
| 33 | |
|---|
| 34 | # The unloading of class definitions is a per jvm policy. For those |
|---|
| 35 | # implementations which run out of permgen space, the following should |
|---|
| 36 | # help things out. |
|---|
| 37 | #java.options=-d64 -XX:+CMSClassUnloadingEnabled -XX:MaxPermSize=1g |
|---|
| 38 | |
|---|
| 39 | # Enable assertions specified via the JVM contract |
|---|
| 40 | #java.options=-ea |
|---|
| 41 | |
|---|
| 42 | # Additional site specific startup code to be merged in 'system.lisp' at build time |
|---|
| 43 | #abcl.startup.file=${basedir}/startup.lisp |
|---|