OLD | NEW |
1 # Copyright (c) 2013 The Native Client Authors. All rights reserved. | 1 # Copyright (c) 2013 The Native Client Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 # The host build of this tool is needed by its dependents. | 5 # The host build of this tool is needed by its dependents. |
6 HOST_BUILD_DIR=${WORK_DIR}/build_host | 6 HOST_BUILD_DIR=${WORK_DIR}/build_host |
7 HOST_INSTALL_DIR=${WORK_DIR}/install_host | 7 HOST_INSTALL_DIR=${WORK_DIR}/install_host |
8 | 8 |
9 EXECUTABLES="bdftruncate${NACL_EXEEXT} ucs2any${NACL_EXEEXT}" | 9 EXECUTABLES="bdftruncate${NACL_EXEEXT} ucs2any${NACL_EXEEXT}" |
10 | 10 |
(...skipping 15 matching lines...) Expand all Loading... |
26 LogExecute make -j${OS_JOBS} | 26 LogExecute make -j${OS_JOBS} |
27 LogExecute make install | 27 LogExecute make install |
28 } | 28 } |
29 | 29 |
30 ConfigureStep() { | 30 ConfigureStep() { |
31 BuildForHost | 31 BuildForHost |
32 Banner "Building for NaCl" | 32 Banner "Building for NaCl" |
33 ChangeDir ${BUILD_DIR} | 33 ChangeDir ${BUILD_DIR} |
34 DefaultConfigureStep | 34 DefaultConfigureStep |
35 } | 35 } |
36 | |
37 PublishStep() { | |
38 PublishByArchForDevEnv | |
39 } | |
OLD | NEW |