Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 |
| OLD | NEW |