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

Side by Side Diff: make_all.sh

Issue 1804293003: Add support for new pnacl native toolchain driver (Closed) Base URL: https://chromium.googlesource.com/webports.git@master
Patch Set: Fix according to Brad's comments Created 4 years, 7 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 | « lib/webports/util.py ('k') | ports/binutils/pkg_info » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/sh 1 #!/bin/sh
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 # This script builds all ports in all possible configurations. 6 # This script builds all ports in all possible configurations.
7 # If you want to be sure your change won't break anythign this is 7 # If you want to be sure your change won't break anythign this is
8 # a good place to start. 8 # a good place to start.
9 9
10 set -x 10 set -x
(...skipping 11 matching lines...) Expand all
22 22
23 # i686 NaCl 23 # i686 NaCl
24 NACL_ARCH=i686 TOOLCHAIN=clang-newlib make ${TARGETS} 24 NACL_ARCH=i686 TOOLCHAIN=clang-newlib make ${TARGETS}
25 NACL_ARCH=i686 TOOLCHAIN=glibc make ${TARGETS} 25 NACL_ARCH=i686 TOOLCHAIN=glibc make ${TARGETS}
26 26
27 # ARM NaCl 27 # ARM NaCl
28 NACL_ARCH=arm TOOLCHAIN=clang-newlib make ${TARGETS} 28 NACL_ARCH=arm TOOLCHAIN=clang-newlib make ${TARGETS}
29 NACL_ARCH=arm TOOLCHAIN=glibc make ${TARGETS} 29 NACL_ARCH=arm TOOLCHAIN=glibc make ${TARGETS}
30 30
31 # PNaCl 31 # PNaCl
32 NACL_ARCH=pnacl TOOLCHAIN=pnacl make ${TARGETS} 32 NACL_ARCH=le32 TOOLCHAIN=pnacl make ${TARGETS}
Kevin Cernekee 2016/05/07 23:19:44 Looks like the latest pepper_canary toolchain (r38
33 33
34 # Emscripten 34 # Emscripten
35 if [ -n "${EMSCRIPTEN:-}" ]; then 35 if [ -n "${EMSCRIPTEN:-}" ]; then
36 NACL_ARCH=emscripten TOOLCHAIN=emscripten make ${TARGETS} 36 NACL_ARCH=emscripten TOOLCHAIN=emscripten make ${TARGETS}
37 fi 37 fi
OLDNEW
« no previous file with comments | « lib/webports/util.py ('k') | ports/binutils/pkg_info » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698