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

Side by Side Diff: ports/binutils-2.25/build.sh

Issue 1773403005: Fix binutils, gcc, gcc-avr in devenv (after roll). (Closed) Base URL: https://chromium.googlesource.com/webports.git@master
Patch Set: fix Created 4 years, 9 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 | « no previous file | ports/binutils/build.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | ports/binutils/build.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698