OLD | NEW |
1 #!/bin/bash | 1 #!/bin/bash |
2 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2 # Copyright (c) 2012, 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 function follow_links() { | 6 function follow_links() { |
7 file="$1" | 7 file="$1" |
8 while [ -h "$file" ]; do | 8 while [ -h "$file" ]; do |
9 # On Mac OS, readlink -f doesn't work. | 9 # On Mac OS, readlink -f doesn't work. |
10 file="$(readlink "$file")" | 10 file="$(readlink "$file")" |
(...skipping 11 matching lines...) Expand all Loading... |
22 then | 22 then |
23 OUT_DIR="$CUR_DIR"/../../xcodebuild/ | 23 OUT_DIR="$CUR_DIR"/../../xcodebuild/ |
24 else | 24 else |
25 OUT_DIR="$CUR_DIR"/../../out/ | 25 OUT_DIR="$CUR_DIR"/../../out/ |
26 fi | 26 fi |
27 | 27 |
28 if [ -z "$DART_CONFIGURATION" ]; | 28 if [ -z "$DART_CONFIGURATION" ]; |
29 then | 29 then |
30 DIRS=$( ls "$OUT_DIR" ) | 30 DIRS=$( ls "$OUT_DIR" ) |
31 # list of possible configurations in decreasing desirability | 31 # list of possible configurations in decreasing desirability |
32 CONFIGS=("ReleaseIA32" "ReleaseX64" "DebugIA32" "DebugX64" | 32 CONFIGS=("ReleaseX64" "ReleaseIA32" "DebugX64" "DebugIA32" |
33 "ReleaseARM" "ReleaseARM64" "ReleaseARMV5TE" "ReleaseMIPS" | 33 "ReleaseARM" "ReleaseARM64" "ReleaseARMV5TE" "ReleaseMIPS" |
34 "DebugARM" "DebugARM64" "DebugARMV5TE" "DebugMIPS") | 34 "DebugARM" "DebugARM64" "DebugARMV5TE" "DebugMIPS") |
35 DART_CONFIGURATION="None" | 35 DART_CONFIGURATION="None" |
36 for CONFIG in ${CONFIGS[*]} | 36 for CONFIG in ${CONFIGS[*]} |
37 do | 37 do |
38 for DIR in $DIRS; | 38 for DIR in $DIRS; |
39 do | 39 do |
40 if [ "$CONFIG" = "$DIR" ]; | 40 if [ "$CONFIG" = "$DIR" ]; |
41 then | 41 then |
42 # choose most desirable configuration that is available and break | 42 # choose most desirable configuration that is available and break |
43 DART_CONFIGURATION="$DIR" | 43 DART_CONFIGURATION="$DIR" |
44 break 2 | 44 break 2 |
45 fi | 45 fi |
46 done | 46 done |
47 done | 47 done |
48 if [ "$DART_CONFIGURATION" = "None" ] | 48 if [ "$DART_CONFIGURATION" = "None" ] |
49 then | 49 then |
50 echo "No valid dart configuration found in $OUT_DIR" | 50 echo "No valid dart configuration found in $OUT_DIR" |
51 exit 1 | 51 exit 1 |
52 fi | 52 fi |
53 fi | 53 fi |
54 | 54 |
55 BIN_DIR="$OUT_DIR$DART_CONFIGURATION" | 55 BIN_DIR="$OUT_DIR$DART_CONFIGURATION" |
56 | 56 |
57 exec "$BIN_DIR"/dart "$@" | 57 exec "$BIN_DIR"/dart "$@" |
OLD | NEW |