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

Side by Side Diff: ports/cairo/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 | « no previous file | ports/cairo/nacl.patch » ('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) 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
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
5 EXECUTABLES="test/cairo-test-suite${NACL_EXEEXT}" 12 EXECUTABLES="test/cairo-test-suite${NACL_EXEEXT}"
6 13
7 # This is only necessary for pnacl 14 # This is only necessary for pnacl
8 export ax_cv_c_float_words_bigendian=no 15 export ax_cv_c_float_words_bigendian=no
9 16
10 # For now disable use of x11 related libraries. 17 # For now disable use of x11 related libraries.
11 EXTRA_CONFIGURE_ARGS+=" --enable-xlib=no" 18 EXTRA_CONFIGURE_ARGS+=" --enable-xlib=no"
12 EXTRA_CONFIGURE_ARGS+=" --enable-xlib-xrender=no" 19 EXTRA_CONFIGURE_ARGS+=" --enable-xlib-xrender=no"
13 EXTRA_CONFIGURE_ARGS+=" --enable-xcb=no" 20 EXTRA_CONFIGURE_ARGS+=" --enable-xcb=no"
14 EXTRA_CONFIGURE_ARGS+=" --enable-xlib-xcb=no" 21 EXTRA_CONFIGURE_ARGS+=" --enable-xlib-xcb=no"
OLDNEW
« no previous file with comments | « no previous file | ports/cairo/nacl.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698