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

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

Issue 1804293003: Add support for new pnacl native toolchain driver (Closed) Base URL: https://chromium.googlesource.com/webports.git@master
Patch Set: Rename exception flag Created 4 years, 7 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) 2011 The Native Client Authors. All rights reserved. 1 # Copyright (c) 2011 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 NACLPORTS_CPPFLAGS+="${NACL_EXCEPTIONS_FLAG}"
5 if [ "${NACL_SHARED}" = "1" ]; then 5 if [ "${NACL_SHARED}" = "1" ]; then
6 EXECUTABLES+=" libfreeimage-3.17.0.so" 6 EXECUTABLES+=" libfreeimage-3.17.0.so"
7 fi 7 fi
8 8
9 if [ "${NACL_ARCH}" = "arm" ]; then 9 if [ "${NACL_ARCH}" = "arm" ]; then
10 NACLPORTS_CPPFLAGS+=" -mfpu=vfp" 10 NACLPORTS_CPPFLAGS+=" -mfpu=vfp"
11 fi 11 fi
12 12
13 BUILD_DIR=${SRC_DIR} 13 BUILD_DIR=${SRC_DIR}
14 14
(...skipping 16 matching lines...) Expand all
31 # assumes pwd has makefile 31 # assumes pwd has makefile
32 LogExecute make -f Makefile.gnu clean 32 LogExecute make -f Makefile.gnu clean
33 LogExecute make -f Makefile.gnu -j${OS_JOBS} ENABLE_SHARED=${NACL_SHARED} 33 LogExecute make -f Makefile.gnu -j${OS_JOBS} ENABLE_SHARED=${NACL_SHARED}
34 } 34 }
35 35
36 InstallStep() { 36 InstallStep() {
37 export INCDIR=${DESTDIR_INCLUDE} 37 export INCDIR=${DESTDIR_INCLUDE}
38 export INSTALLDIR=${DESTDIR_LIB} 38 export INSTALLDIR=${DESTDIR_LIB}
39 LogExecute make -f Makefile.gnu install ENABLE_SHARED=${NACL_SHARED} 39 LogExecute make -f Makefile.gnu install ENABLE_SHARED=${NACL_SHARED}
40 } 40 }
OLDNEW
« ports/devil/build.sh ('K') | « ports/ffmpeg/nacl.patch ('k') | ports/gnutls/build.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698