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

Side by Side Diff: ports/devil/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) 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 NACLPORTS_CPPFLAGS+="${NACL_EXCEPTIONS_FLAG}"
bradnelson 2016/05/02 17:38:58 Maybe have a space in-between on all of these? Thi
Ankur Mittal 2016/05/02 20:22:15 Done.
5 if [ "${NACL_ARCH}" = "pnacl" ]; then 6 if [ "${NACL_ARCH}" = "pnacl" ]; then
6 NACLPORTS_CFLAGS+=" -std=gnu89" 7 NACLPORTS_CFLAGS+=" -std=gnu89"
7 fi 8 fi
8 9
9 TestStep() { 10 TestStep() {
10 return 0 11 return 0
11 12
12 if [ ${NACL_ARCH} == "pnacl" ]; then 13 if [ ${NACL_ARCH} == "pnacl" ]; then
13 # Run once for each architecture. 14 # Run once for each architecture.
14 15
15 WriteLauncherScript test/testil testil.x86-32.nexe 16 WriteLauncherScript test/testil testil.x86-32.nexe
16 (cd test && make check) 17 (cd test && make check)
17 18
18 WriteLauncherScript test/testil testil.x86-64.nexe 19 WriteLauncherScript test/testil testil.x86-64.nexe
19 (cd test && make check) 20 (cd test && make check)
20 else 21 else
21 (cd test && make check) 22 (cd test && make check)
22 fi 23 fi
23 } 24 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698