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

Side by Side Diff: ports/coreutils/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) 2014 The Native Client Authors. All rights reserved. 1 # Copyright (c) 2014 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 BARE_EXECUTABLES="\ 5 BARE_EXECUTABLES="\
6 [ basename cat chgrp chmod chown cksum comm cp csplit cut date dd df dir 6 [ basename cat chgrp chmod chown cksum comm cp csplit cut date dd df dir
7 dircolors dirname du echo env expand expr factor false fmt fold ginstall head 7 dircolors dirname du echo env expand expr factor false fmt fold ginstall head
8 hostname id join kill link ln logname ls md5sum mkdir mkfifo mknod mv nl nice 8 hostname id join kill link ln logname ls md5sum mkdir mkfifo mknod mv nl nice
9 nohup od paste pathchk pr printenv printf ptx pwd readlink rm rmdir seq 9 nohup od paste pathchk pr printenv printf ptx pwd readlink rm rmdir seq
10 setuidgid sha1sum shred sleep sort split stat stty su sum sync tac tail tee 10 setuidgid sha1sum shred sleep sort split stat stty su sum sync tac tail tee
11 test touch tr true tsort tty unexpand uniq unlink uname vdir wc whoami yes" 11 test touch tr true tsort tty unexpand uniq unlink uname vdir wc whoami yes"
12 12
13 EXECUTABLES="" 13 EXECUTABLES=""
14 for exe in ${BARE_EXECUTABLES}; do 14 for exe in ${BARE_EXECUTABLES}; do
15 EXECUTABLES+=" src/${exe}" 15 EXECUTABLES+=" src/${exe}"
16 done 16 done
17 17
18 TRANSLATE_PEXES=no 18 TRANSLATE_PEXES=no
19 19
20 export EXTRA_LIBS="${NACL_CLI_MAIN_LIB}" 20 export EXTRA_LIBS="${NACL_CLI_MAIN_LIB}"
21 21
22 if [ "${NACL_LIBC}" = "newlib" ]; then 22 if [ "${NACL_LIBC}" = "newlib" ]; then
23 NACLPORTS_CPPFLAGS+=" -I${NACLPORTS_INCLUDE}/glibc-compat" 23 NACLPORTS_CPPFLAGS+=" -I${NACLPORTS_INCLUDE}/glibc-compat"
24 export LIBS+=" -lglibc-compat" 24 export LIBS+=" -lglibc-compat"
25 fi 25 fi
26
27 PublishStep() {
28 PublishByArchForDevEnv
29 }
OLDNEW
« no previous file with comments | « ports/corelibs/build.sh ('k') | ports/curl/build.sh » ('j') | ports/curl/nacl.patch » ('J')

Powered by Google App Engine
This is Rietveld 408576698