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

Side by Side Diff: build_tools/bots/pnacl_bots.sh

Issue 11636027: Add ARM toolchain support. (Closed) Base URL: git@github.com:samclegg/naclports.git@sbc
Patch Set: revert .c file change Created 7 years, 11 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
OLDNEW
1 #!/bin/bash 1 #!/bin/bash
2 # Copyright (c) 2012 The Native Client Authors. All rights reserved. 2 # Copyright (c) 2012 The Native Client Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 # 5 #
6 6
7 ###################################################################### 7 ######################################################################
8 # Notes on directory layout: 8 # Notes on directory layout:
9 # makefile location (base_dir): naclports/src 9 # makefile location (base_dir): naclports/src
10 # bot script location: naclports/src/build_tools/bots/ 10 # bot script location: naclports/src/build_tools/bots/
11 # toolchain injection point: specified externally via NACL_SDK_ROOT. 11 # toolchain injection point: specified externally via NACL_SDK_ROOT.
12 ###################################################################### 12 ######################################################################
13 13
14 set -o nounset 14 set -o nounset
15 set -o errexit 15 set -o errexit
16 16
17 readonly BASE_DIR="$(dirname $0)/../.." 17 readonly BASE_DIR="$(dirname $0)/../.."
18 cd ${BASE_DIR} 18 cd ${BASE_DIR}
19 19
20 ERROR=0 20 ERROR=0
21 21
22 export NACL_PACKAGES_BITSIZE=pnacl 22 export NACL_ARCH=pnacl
23 readonly PACKAGES=$(make works_for_pnacl_list) 23 readonly PACKAGES=$(make works_for_pnacl_list)
24 24
25 25
26 StepConfig() { 26 StepConfig() {
27 echo "@@@BUILD_STEP CONFIG" 27 echo "@@@BUILD_STEP CONFIG"
28 echo "BASE_DIR: ${BASE_DIR}" 28 echo "BASE_DIR: ${BASE_DIR}"
29 echo "PACKAGES:" 29 echo "PACKAGES:"
30 for i in ${PACKAGES} ; do 30 for i in ${PACKAGES} ; do
31 echo " $i" 31 echo " $i"
32 done 32 done
(...skipping 23 matching lines...) Expand all
56 echo "@@@STEP_FAILURE@@@" 56 echo "@@@STEP_FAILURE@@@"
57 fi 57 fi
58 echo -e "${messages}" 58 echo -e "${messages}"
59 } 59 }
60 60
61 StepConfig 61 StepConfig
62 StepInstallSdk 62 StepInstallSdk
63 StepBuildEverything 63 StepBuildEverything
64 64
65 exit ${ERROR} 65 exit ${ERROR}
OLDNEW
« no previous file with comments | « build_tools/bots/linux/nacl-install-linux-ports-2.sh ('k') | build_tools/bots/windows/nacl-install-windows-ports-0.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698