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

Side by Side Diff: ports/physfs/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/libyuv/build.sh ('k') | ports/python-static/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 (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 # TODO(binji): turn on shared building for glibc (need -fPIC) 5 # TODO(binji): turn on shared building for glibc (need -fPIC)
6 BUILD_SHARED=FALSE 6 BUILD_SHARED=FALSE
7 # TODO(binji): The tests don't currently build without zlib as a shared 7 # TODO(binji): The tests don't currently build without zlib as a shared
8 # library. 8 # library.
9 BUILD_TEST=FALSE 9 BUILD_TEST=FALSE
10 10
11 # Workaround for arm-gcc bug:
12 # https://code.google.com/p/nativeclient/issues/detail?id=3205
13 # TODO(sbc): remove this once the issue is fixed
14 if [ "${NACL_ARCH}" = "arm" ]; then
15 NACLPORTS_CPPFLAGS+=" -mfpu=vfp"
16 fi
17
11 EXTRA_CMAKE_ARGS=" \ 18 EXTRA_CMAKE_ARGS=" \
12 -DPHYSFS_BUILD_SHARED=${BUILD_SHARED} \ 19 -DPHYSFS_BUILD_SHARED=${BUILD_SHARED} \
13 -DPHYSFS_BUILD_TEST=${BUILD_TEST} \ 20 -DPHYSFS_BUILD_TEST=${BUILD_TEST} \
14 -DPHYSFS_HAVE_MNTENT_H=FALSE" 21 -DPHYSFS_HAVE_MNTENT_H=FALSE"
OLDNEW
« no previous file with comments | « ports/libyuv/build.sh ('k') | ports/python-static/build.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698