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

Side by Side Diff: ports/fftw-float/build.sh

Issue 1578573002: Disable running of sel_ldr arm tests on mac (Closed) Base URL: https://chromium.googlesource.com/webports.git@master
Patch Set: Created 4 years, 11 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 | « build_tools/common.sh ('k') | ports/fftw/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 EXECUTABLES="tools/fftwf-wisdom${NACL_EXEEXT} tests/bench${NACL_EXEEXT}" 5 EXECUTABLES="tools/fftwf-wisdom${NACL_EXEEXT} tests/bench${NACL_EXEEXT}"
6 6
7 EXTRA_CONFIGURE_ARGS="--enable-float" 7 EXTRA_CONFIGURE_ARGS="--enable-float"
8 8
9 if [ "${NACL_ARCH}" = "arm" ]; then 9 if [ "${NACL_ARCH}" = "arm" ]; then
10 NACLPORTS_CPPFLAGS+=" -fomit-frame-pointer -fstrict-aliasing \ 10 NACLPORTS_CPPFLAGS+=" -fomit-frame-pointer -fstrict-aliasing \
(...skipping 14 matching lines...) Expand all
25 25
26 LogExecute ${SRC_DIR}/configure \ 26 LogExecute ${SRC_DIR}/configure \
27 --host=nacl \ 27 --host=nacl \
28 --prefix=${PREFIX} \ 28 --prefix=${PREFIX} \
29 --enable-threads \ 29 --enable-threads \
30 ${EXTRA_CONFIGURE_ARGS:-} 30 ${EXTRA_CONFIGURE_ARGS:-}
31 } 31 }
32 32
33 TestStep() { 33 TestStep() {
34 LogExecute make check EXEEXT= 34 LogExecute make check EXEEXT=
35
36 if [ ${NACL_ARCH} = "pnacl" ]; then
37 for arch in x86-32 arm; do
38 for exe in ${EXECUTABLES}; do
39 local exe_noext=${exe%.*}
40 WriteLauncherScript ${exe_noext} $(basename ${exe_noext}.${arch}.nexe)
41 done
42 LogExecute make check EXEEXT=
43 done
44 fi
45 } 35 }
OLDNEW
« no previous file with comments | « build_tools/common.sh ('k') | ports/fftw/build.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698