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

Side by Side Diff: ports/bash/build.sh

Issue 1285953002: Switch devenv to use pkg packages (Closed) Base URL: https://chromium.googlesource.com/external/naclports.git@toolchain_install
Patch Set: Created 5 years, 4 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
OLDNEW
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 EXTRA_CONFIGURE_ARGS="--with-curses" 5 EXTRA_CONFIGURE_ARGS="--with-curses"
6 EXTRA_CONFIGURE_ARGS+=" --with-installed-readline --enable-readline" 6 EXTRA_CONFIGURE_ARGS+=" --with-installed-readline --enable-readline"
7 NACLPORTS_CPPFLAGS+=" -DHAVE_GETHOSTNAME -DNO_MAIN_ENV_ARG" 7 NACLPORTS_CPPFLAGS+=" -DHAVE_GETHOSTNAME -DNO_MAIN_ENV_ARG"
8 NACLPORTS_CPPFLAGS+=" -Dmain=nacl_main -Dpipe=nacl_spawn_pipe" 8 NACLPORTS_CPPFLAGS+=" -Dmain=nacl_main -Dpipe=nacl_spawn_pipe"
9 export LIBS="${NACL_CLI_MAIN_LIB}" 9 export LIBS="${NACL_CLI_MAIN_LIB}"
10 10
(...skipping 17 matching lines...) Expand all
28 # that parallel build will sometimes fail due to lib/intl/libintl.h 28 # that parallel build will sometimes fail due to lib/intl/libintl.h
29 # not being generated before files that use it are compiled. 29 # not being generated before files that use it are compiled.
30 # For example pathexp.c indirectly depends on libintl.h but compilation 30 # For example pathexp.c indirectly depends on libintl.h but compilation
31 # of this file doesn't depend on the rule that generates it. 31 # of this file doesn't depend on the rule that generates it.
32 # The fix is to explictly build lib/intl before we build everything else. 32 # The fix is to explictly build lib/intl before we build everything else.
33 LogExecute make -C lib/intl 33 LogExecute make -C lib/intl
34 DefaultBuildStep 34 DefaultBuildStep
35 } 35 }
36 36
37 PublishStep() { 37 PublishStep() {
38 # Publish a generic per-arch copy for use by programs like emacs.
39 PublishByArchForDevEnv
40 PublishMultiArch bash${NACL_EXEEXT} bash bash_multiarch 38 PublishMultiArch bash${NACL_EXEEXT} bash bash_multiarch
41 } 39 }
OLDNEW
« no previous file with comments | « ports/avrdude/build.sh ('k') | ports/bdftopcf/build.sh » ('j') | ports/curl/nacl.patch » ('J')

Powered by Google App Engine
This is Rietveld 408576698