Changeset 13729
- Timestamp:
- 01/09/12 09:55:58 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.0.x/abcl/abcl.properties.in
r13631 r13729 1 1 # $Id$ 2 2 3 # XXX should be called 'build.properties' but this collides with its usage by the Eclipe IDE 4 3 5 # Template for settings the Ant based build process. 6 4 7 5 8 # Attempt to perform incremental compilation? … … 14 17 # Examples: 15 18 19 # Java7 on 64bit optimizations 20 #java.options=-d64 -Xmx16g -XX:+CMSClassUnloadingEnabled -XX:MaxPermSize=2g 21 16 22 # Set the JVM to use a maximum of 1GB of RAM (only works for 64bit JVMs) 17 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 18 33 19 34 # The unloading of class definitions is a per jvm policy. For those … … 22 37 #java.options=-d64 -XX:+CMSClassUnloadingEnabled -XX:MaxPermSize=1g 23 38 39 # Enable assertions specified via the JVM contract 40 #java.options=-ea 41 24 42 # Additional site specific startup code to be merged in 'system.lisp' at build time 25 43 #abcl.startup.file=${basedir}/startup.lisp
Note: See TracChangeset
for help on using the changeset viewer.