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

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

Issue 1804293003: Add support for new pnacl native toolchain driver (Closed) Base URL: https://chromium.googlesource.com/webports.git@master
Patch Set: Fix according to Brad's comments 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_LIBC}" = "newlib" ]; then 5 if [ "${NACL_LIBC}" = "newlib" ]; then
6 # TODO(sbc): remove once this is fixed: 6 # TODO(sbc): remove once this is fixed:
7 # https://code.google.com/p/nativeclient/issues/detail?id=3790 7 # https://code.google.com/p/nativeclient/issues/detail?id=3790
8 NACLPORTS_CPPFLAGS+=" -DSSIZE_MAX=LONG_MAX" 8 NACLPORTS_CPPFLAGS+=" -DSSIZE_MAX=LONG_MAX"
9 EXE_DIR="" 9 EXE_DIR=""
10 else 10 else
11 EXE_DIR=".libs/" 11 EXE_DIR=".libs/"
12 fi 12 fi
13 13
14 EXTRA_CONFIGURE_ARGS=" 14 EXTRA_CONFIGURE_ARGS="
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 # The tests as (a) very slow and (b) not all passing at this point. 70 # The tests as (a) very slow and (b) not all passing at this point.
71 return 0 71 return 0
72 72
73 # As part of 'make check' there will be several test executables built. 73 # As part of 'make check' there will be several test executables built.
74 # We need to create the script that launch them ahead of time. 74 # We need to create the script that launch them ahead of time.
75 for EXE in ${TEST_EXECUTABLES}; do 75 for EXE in ${TEST_EXECUTABLES}; do
76 WriteLauncherScript ${EXE%%${NACL_EXEEXT}} $(basename ${EXE}) 76 WriteLauncherScript ${EXE%%${NACL_EXEEXT}} $(basename ${EXE})
77 done 77 done
78 LogExecute make check 78 LogExecute make check
79 } 79 }
OLDNEW
« make_all.sh ('K') | « ports/id3lib/build.sh ('k') | ports/imagemagick/nacl.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698