Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-tv/xbmc/files: xbmc-11.0-no-arm-flags.patch
Date: Sun, 29 Apr 2012 16:01:44
Message-Id: 20120429160128.3FCD32004B@flycatcher.gentoo.org
1 vapier 12/04/29 16:01:28
2
3 Added: xbmc-11.0-no-arm-flags.patch
4 Log:
5 Add dedciated arm flags patch for 11.0 #413715 by Lech Perczak.
6
7 (Portage version: 2.2.0_alpha100/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 media-tv/xbmc/files/xbmc-11.0-no-arm-flags.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/xbmc/files/xbmc-11.0-no-arm-flags.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/xbmc/files/xbmc-11.0-no-arm-flags.patch?rev=1.1&content-type=text/plain
14
15 Index: xbmc-11.0-no-arm-flags.patch
16 ===================================================================
17 http://bugs.gentoo.org/400617
18
19 do not force any particular ABI or FPU or SIMD compiler flags for arm
20 targets. let the toolchain and user CFLAGS control that.
21
22 --- a/configure.in
23 +++ b/configure.in
24 @@ -571,7 +571,7 @@
25 LIBS="$LIBS -framework DiskArbitration"
26 LIBS="$LIBS -framework ApplicationServices"
27 fi
28 -elif test "$use_arch" = "arm"; then
29 +elif false; then
30 CFLAGS="$CFLAGS -mfloat-abi=softfp -mno-apcs-stack-check"
31 CXXFLAGS="$CXXFLAGS -mfloat-abi=softfp -mno-apcs-stack-check"
32 FFMPEG_EXTRACFLAGS="-mfloat-abi=softfp"