diff options
author | 2012-04-29 16:01:28 +0000 | |
---|---|---|
committer | 2012-04-29 16:01:28 +0000 | |
commit | 3ae068cf88fe987d284805940c83b48161f83413 (patch) | |
tree | 0ea4e8249bd7dc505f6a6ed0a88777fc6ce6b473 /media-tv/xbmc/files | |
parent | Mark alpha arm ia64 m68k s390 sh stable #413555. (diff) | |
download | historical-3ae068cf88fe987d284805940c83b48161f83413.tar.gz historical-3ae068cf88fe987d284805940c83b48161f83413.tar.bz2 historical-3ae068cf88fe987d284805940c83b48161f83413.zip |
Add dedciated arm flags patch for 11.0 #413715 by Lech Perczak.
Package-Manager: portage-2.2.0_alpha100/cvs/Linux x86_64
Diffstat (limited to 'media-tv/xbmc/files')
-rw-r--r-- | media-tv/xbmc/files/xbmc-11.0-no-arm-flags.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/media-tv/xbmc/files/xbmc-11.0-no-arm-flags.patch b/media-tv/xbmc/files/xbmc-11.0-no-arm-flags.patch new file mode 100644 index 000000000000..179697a8f5ce --- /dev/null +++ b/media-tv/xbmc/files/xbmc-11.0-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" |