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

Side by Side Diff: sdk/bin/dart

Issue 2858623002: Remove MIPS support (Closed)
Patch Set: Merge and cleanup Created 3 years, 6 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
« no previous file with comments | « runtime/vm/vm_sources.gypi ('k') | sdk/bin/pub » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env bash 1 #!/usr/bin/env 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 12 matching lines...) Expand all
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=("ReleaseX64" "ReleaseIA32" "DebugX64" "DebugIA32" 32 CONFIGS=("ReleaseX64" "ReleaseIA32" "DebugX64" "DebugIA32"
33 "ReleaseARM" "ReleaseARM64" "ReleaseARMV5TE" "ReleaseMIPS" 33 "ReleaseARM" "ReleaseARM64" "ReleaseARMV5TE"
34 "DebugARM" "DebugARM64" "DebugARMV5TE" "DebugMIPS") 34 "DebugARM" "DebugARM64" "DebugARMV5TE")
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 "$@"
OLDNEW
« no previous file with comments | « runtime/vm/vm_sources.gypi ('k') | sdk/bin/pub » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698