summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2012-01-27 22:51:35 +0000
committerMike Frysinger <vapier@gentoo.org>2012-01-27 22:51:35 +0000
commit0d94b7d48630f40cda11b50f7e40d6851e42e24f (patch)
tree4f8ec9ff831eb6a03fe1f6cbb4989ef9e45f07b3 /media-tv/xbmc/files
parentCall default phase functions for src_compile and src_install. (diff)
downloadgentoo-2-0d94b7d48630f40cda11b50f7e40d6851e42e24f.tar.gz
gentoo-2-0d94b7d48630f40cda11b50f7e40d6851e42e24f.tar.bz2
gentoo-2-0d94b7d48630f40cda11b50f7e40d6851e42e24f.zip
Disable hardcoding of random ARM compiler flags #400617 by Fabio Erculiani.
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
Diffstat (limited to 'media-tv/xbmc/files')
-rw-r--r--media-tv/xbmc/files/xbmc-9999-no-arm-flags.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/media-tv/xbmc/files/xbmc-9999-no-arm-flags.patch b/media-tv/xbmc/files/xbmc-9999-no-arm-flags.patch
new file mode 100644
index 000000000000..179697a8f5ce
--- /dev/null
+++ b/media-tv/xbmc/files/xbmc-9999-no-arm-flags.patch
@@ -0,0 +1,16 @@
+http://bugs.gentoo.org/400617
+
+do not force any particular ABI or FPU or SIMD compiler flags for arm
+targets. let the toolchain and user CFLAGS control that.
+
+--- a/configure.in
++++ b/configure.in
+@@ -571,7 +571,7 @@
+ LIBS="$LIBS -framework DiskArbitration"
+ LIBS="$LIBS -framework ApplicationServices"
+ fi
+-elif test "$use_arch" = "arm"; then
++elif false; then
+ CFLAGS="$CFLAGS -mfloat-abi=softfp -mno-apcs-stack-check"
+ CXXFLAGS="$CXXFLAGS -mfloat-abi=softfp -mno-apcs-stack-check"
+ FFMPEG_EXTRACFLAGS="-mfloat-abi=softfp"