Created
September 21, 2010 20:35
-
-
Save glennpratt/590476 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ${HOME} will be replaced by JVM user.home system property | |
netbeans_default_userdir="${HOME}/.netbeans/6.9" | |
# Options used by NetBeans launcher by default, can be overridden by explicit | |
# command line switches: | |
netbeans_default_options="-J-client -J-d64 -J-Xss4m -J-Xms512m -J-Xmx1024m -J-XX:PermSize=64m -J-XX:MaxPermSize=1024m -J-Dapple.laf.useScreenMenuBar=true -J-Dapple.awt.graphics.UseQuartz=true -J-Dsun.java2d.noddraw=true -J-Dawt.nativeDoubleBuffering=true -J-XX:+UseAdaptiveSizePolicy -J-Djava.net.preferIPv4Stack=true -J-XX:+AggressiveOpts -J-XX:+AggressiveHeap" | |
# Note that a default -Xmx is selected for you automatically. | |
# You can find this value in var/log/messages.log file in your userdir. | |
# The automatically selected value can be overridden by specifying -J-Xmx here | |
# or on the command line. | |
# If you specify the heap size (-Xmx) explicitely, you may also want to enable | |
# Concurrent Mark & Sweep garbage collector. In such case add the following | |
# options to the netbeans_default_options: | |
# -J-XX:+UseConcMarkSweepGC -J-XX:+CMSClassUnloadingEnabled -J-XX:+CMSPermGenSweepingEnabled | |
# (see http://wiki.netbeans.org/wiki/view/FaqGCPauses) | |
# Default location of JDK, can be overridden by using --jdkhome <dir>: | |
#netbeans_jdkhome="/path/to/jdk" | |
# Additional module clusters, using ${path.separator} (';' on Windows or ':' on Unix): | |
#netbeans_extraclusters="/absolute/path/to/cluster1:/absolute/path/to/cluster2" | |
# If you have some problems with detect of proxy settings, you may want to enable | |
# detect the proxy settings provided by JDK5 or higher. | |
# In such case add -J-Djava.net.useSystemProxies=true to the netbeans_default_options. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment