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

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

Issue 730193002: Fix more compile failures caused by recent ARM toolchain upgrade. (Closed) Base URL: https://chromium.googlesource.com/external/naclports.git@master
Patch Set: Created 6 years, 1 month 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 | « ports/libtommath/build.sh ('k') | ports/physfs/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 2014 The Native Client Authors. All rights reserved. 1 # Copyright 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 # Workaround for arm-gcc bug:
6 # https://code.google.com/p/nativeclient/issues/detail?id=3205
7 # TODO(sbc): remove this once the issue is fixed
8 if [ "${NACL_ARCH}" = "arm" ]; then
9 NACLPORTS_CPPFLAGS+=" -mfpu=vfp"
10 fi
11
12 if [ "${NACL_LIBC}" = "newlib" ]; then
13 NACLPORTS_CPPFLAGS+=" -I${NACLPORTS_INCLUDE}/glibc-compat"
14 fi
15
5 EXECUTABLES="convert libyuv_unittest" 16 EXECUTABLES="convert libyuv_unittest"
6 17
7 TestStep() { 18 TestStep() {
8 if [ "${NACL_ARCH}" != pnacl ]; then 19 if [ "${NACL_ARCH}" != pnacl ]; then
9 ./libyuv_unittest.sh 20 ./libyuv_unittest.sh
10 fi 21 fi
11 } 22 }
OLDNEW
« no previous file with comments | « ports/libtommath/build.sh ('k') | ports/physfs/build.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698