Here is the -d32 -client change for mac

Review URL: https://chromiumcodereview.appspot.com//9648027

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@5239 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
zundel@google.com
2012-03-09 16:53:36 +00:00
parent 92cddd5ba8
commit 46cfefcfed
+3 -2
View File
@@ -18,8 +18,9 @@ OS=`uname | tr [A-Z] [a-z]`
if [ "$OS" == "darwin" ] ; then
# Bump up the heap on Mac VMs, some of which default to 128M or less.
# Users can specify DART_JVMARGS in the environment to override
# this setting.
EXTRA_JVMARGS+="-Xmx256M"
# this setting. Force to 32 bit client vm. 64 bit and server VM make for
# poor performance.
EXTRA_JVMARGS+="-Xmx256M -client -d32"
fi
exec java $EXTRA_JVMARGS $DART_JVMARGS -ea -classpath "@CLASSPATH@" \