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

Side by Side Diff: compiler/scripts/dartc.sh

Issue 9860009: Removes dartc reliance on its own libraries, now can be targeted at any implementation's libraries (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated 'configs' to be 'config' directory, updated addLib() to throw exception Created 8 years, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 #!/bin/bash --posix 1 #!/bin/bash --posix
2 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 2 # Copyright (c) 2011, 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 set -e 6 set -e
7 7
8 SCRIPT_DIR=$(dirname $0) 8 SCRIPT_DIR=$(dirname $0)
9 DARTC_HOME=$(dirname $SCRIPT_DIR) 9 DARTC_HOME=$(dirname $SCRIPT_DIR)
10 DARTC_LIBS=$DARTC_HOME/lib 10 DARTC_LIBS=$DARTC_HOME/lib
11 DARTC_SDK=$(dirname $DARTC_HOME)/dart-sdk
11 12
12 if [ -x /usr/libexec/java_home ]; then 13 if [ -x /usr/libexec/java_home ]; then
13 export JAVA_HOME=$(/usr/libexec/java_home -v '1.6+') 14 export JAVA_HOME=$(/usr/libexec/java_home -v '1.6+')
14 fi 15 fi
15 16
16 EXTRA_JVMARGS="-Xss2M " 17 EXTRA_JVMARGS="-Xss2M "
17 OS=`uname | tr [A-Z] [a-z]` 18 OS=`uname | tr [A-Z] [a-z]`
18 if [ "$OS" == "darwin" ] ; then 19 if [ "$OS" == "darwin" ] ; then
19 # Bump up the heap on Mac VMs, some of which default to 128M or less. 20 # Bump up the heap on Mac VMs, some of which default to 128M or less.
20 # Users can specify DART_JVMARGS in the environment to override 21 # Users can specify DART_JVMARGS in the environment to override
21 # this setting. Force to 32 bit client vm. 64 bit and server VM make for 22 # this setting. Force to 32 bit client vm. 64 bit and server VM make for
22 # poor performance. 23 # poor performance.
23 EXTRA_JVMARGS+="-Xmx256M -client -d32" 24 EXTRA_JVMARGS+="-Xmx256M -client -d32"
24 fi 25 fi
25 26
26 exec java $EXTRA_JVMARGS $DART_JVMARGS -ea -classpath "@CLASSPATH@" \ 27 exec java $EXTRA_JVMARGS $DART_JVMARGS -ea -classpath "@CLASSPATH@" \
27 com.google.dart.compiler.DartCompiler $@ 28 com.google.dart.compiler.DartCompiler --dart-sdk ${DARTC_SDK} $@
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698