Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(25)

Unified Diff: compiler/scripts/dartc.sh

Issue 8613007: Adds logic to bump up the default heap for invoking dartc on Mac. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Reverted UnitTestBatchRunner Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | compiler/scripts/dartc_test.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: compiler/scripts/dartc.sh
diff --git a/compiler/scripts/dartc.sh b/compiler/scripts/dartc.sh
index 82438929780fd94b469d29121b565da648abb7be..015f812781a179d5b9657e92f46c6f33d7cb07df 100755
--- a/compiler/scripts/dartc.sh
+++ b/compiler/scripts/dartc.sh
@@ -11,5 +11,12 @@ if [ -x /usr/libexec/java_home ]; then
export JAVA_HOME=$(/usr/libexec/java_home -v '1.6+')
fi
-exec java $DART_JVMARGS -ea -classpath "@CLASSPATH@" \
+EXTRA_JVMARGS=
+OS=`uname | tr [A-Z] [a-z]`
+if [ "$OS" == "darwin" ] ; then
+ # Bump up the heap on Mac VMs
+ EXTRA_JVMARGS=-Xmx1024M
+fi
+
+exec java $EXTRA_JVMARGS $DART_JVMARGS -ea -classpath "@CLASSPATH@" \
com.google.dart.compiler.DartCompiler $@
« no previous file with comments | « no previous file | compiler/scripts/dartc_test.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698