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

Unified Diff: compiler/scripts/dart_analyzer.sh

Issue 11234069: Removed a -d32 flag to dart_analyzer (fix for http://code.google.com/p/dart/issues/detail?id=5836) (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 2 months 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 | « compiler/java/com/google/dart/compiler/DartCompiler.java ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: compiler/scripts/dart_analyzer.sh
===================================================================
--- compiler/scripts/dart_analyzer.sh (revision 13988)
+++ compiler/scripts/dart_analyzer.sh (working copy)
@@ -57,13 +57,12 @@
fi
EXTRA_JVMARGS="-Xss2M "
-OS=`uname | tr [A-Z] [a-z]`
+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. Force to 32 bit client vm. 64 bit and server VM make for
- # poor performance.
- EXTRA_JVMARGS+=" -Xmx256M -client -d32 "
+ # Users can specify DART_JVMARGS in the environment to override this
+ # setting.
+ EXTRA_JVMARGS+=" -Xmx256M -client "
else
# On other architectures
# -batch invocations will do better with a server vm
« no previous file with comments | « compiler/java/com/google/dart/compiler/DartCompiler.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698