OLD | NEW |
---|---|
1 #!/bin/bash | 1 #!/bin/bash |
2 # Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 2 # Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
3 # for details. All rights reserved. Use of this source code is governed by a | 3 # for details. All rights reserved. Use of this source code is governed by a |
4 # BSD-style license that can be found in the LICENSE file. | 4 # BSD-style license that can be found in the LICENSE file. |
5 | 5 |
6 # This file is used to execute the analyzer by running the jar file. | 6 # This file is used to execute the analyzer by running the jar file. |
7 # It is a simple wrapper enabling us to have simpler command lines in | 7 # It is a simple wrapper enabling us to have simpler command lines in |
8 # the testing infrastructure. | 8 # the testing infrastructure. |
9 set -e | 9 set -e |
10 | 10 |
(...skipping 20 matching lines...) Expand all Loading... | |
31 | 31 |
32 if [[ `uname` == 'Darwin' ]]; | 32 if [[ `uname` == 'Darwin' ]]; |
33 then | 33 then |
34 JAR_DIR="$CUR_DIR"/../../xcodebuild/$DART_CONFIGURATION/dartanalyzer | 34 JAR_DIR="$CUR_DIR"/../../xcodebuild/$DART_CONFIGURATION/dartanalyzer |
35 else | 35 else |
36 JAR_DIR="$CUR_DIR"/../../out/$DART_CONFIGURATION/dartanalyzer | 36 JAR_DIR="$CUR_DIR"/../../out/$DART_CONFIGURATION/dartanalyzer |
37 fi | 37 fi |
38 | 38 |
39 JAR_FILE="$JAR_DIR/dartanalyzer.jar" | 39 JAR_FILE="$JAR_DIR/dartanalyzer.jar" |
40 | 40 |
41 exec java -jar $JAR_FILE --dart-sdk "$SDK_DIR" "$@" | 41 EXTRA_JVMARGS="-Xss2M " |
42 OS=`uname | tr "[A-Z]" "[a-z]"` | |
43 if [ "$OS" == "darwin" ] ; then | |
44 # Bump up the heap on Mac VMs, some of which default to 128M or less. | |
45 EXTRA_JVMARGS+=" -Xmx256M -client " | |
46 else | |
47 # On other architectures | |
48 # -batch invocations will do better with a server vm | |
49 # invocations for analyzing a single file do better with a client vm | |
50 if [ $FOUND_BATCH = 0 ] ; then | |
ricow1
2013/08/07 08:53:09
what is FOUND_BATCH here - I don't see it defined
| |
51 EXTRA_JVMARGS+=" -client " | |
52 fi | |
53 fi | |
54 | |
55 exec java $EXTRA_JVMARGS -jar $JAR_FILE --dart-sdk "$SDK_DIR" "$@" | |
OLD | NEW |