| OLD | NEW |
| 1 # Copyright 2015 The Native Client Authors. All rights reserved. | 1 # Copyright 2015 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 HOST_BUILD_DIR=${WORK_DIR}/build_host | 5 HOST_BUILD_DIR=${WORK_DIR}/build_host |
| 6 HOST_INSTALL_DIR=${WORK_DIR}/install_host | 6 HOST_INSTALL_DIR=${WORK_DIR}/install_host |
| 7 | 7 |
| 8 export ac_cv_func_getrlimit=no | 8 export ac_cv_func_getrlimit=no |
| 9 | 9 |
| 10 EnableCliMain | 10 EnableCliMain |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 | 24 |
| 25 export PATH="${HOST_INSTALL_DIR}/bin:${PATH}" | 25 export PATH="${HOST_INSTALL_DIR}/bin:${PATH}" |
| 26 ChangeDir ${BUILD_DIR} | 26 ChangeDir ${BUILD_DIR} |
| 27 EXTRA_CONFIGURE_ARGS="\ | 27 EXTRA_CONFIGURE_ARGS="\ |
| 28 --target=avr \ | 28 --target=avr \ |
| 29 --disable-nls \ | 29 --disable-nls \ |
| 30 --disable-werror \ | 30 --disable-werror \ |
| 31 --enable-deterministic-archives \ | 31 --enable-deterministic-archives \ |
| 32 --without-zlib" | 32 --without-zlib" |
| 33 | 33 |
| 34 export LIBS="${NACLPORTS_LIBS}" |
| 34 DefaultConfigureStep | 35 DefaultConfigureStep |
| 35 } | 36 } |
| 37 |
| 38 BuildStep() { |
| 39 export LIBS="${NACLPORTS_LIBS}" |
| 40 DefaultBuildStep |
| 41 } |
| OLD | NEW |