summaryrefslogtreecommitdiff
path: root/src/libffmpeg/libavcodec/i386
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2006-06-17 15:20:56 +0000
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2006-06-17 15:20:56 +0000
commit31eee779c6802eb127e5a529410a61b719a30694 (patch)
tree3931a34996327771da82b654163d285e311848e0 /src/libffmpeg/libavcodec/i386
parentc036faa947dd1a4362ca796f4240835ea404a654 (diff)
downloadxine-lib-31eee779c6802eb127e5a529410a61b719a30694.tar.gz
xine-lib-31eee779c6802eb127e5a529410a61b719a30694.tar.bz2
Fix strict aliasing rules breakages where possible, enable -fno-strict-aliasing where the breakage is unresolvable, and not enable it globally (decreases performances).
CVS patchset: 8048 CVS date: 2006/06/17 15:20:56
Diffstat (limited to 'src/libffmpeg/libavcodec/i386')
-rw-r--r--src/libffmpeg/libavcodec/i386/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libffmpeg/libavcodec/i386/Makefile.am b/src/libffmpeg/libavcodec/i386/Makefile.am
index 35c2dc5be..b472ec378 100644
--- a/src/libffmpeg/libavcodec/i386/Makefile.am
+++ b/src/libffmpeg/libavcodec/i386/Makefile.am
@@ -2,7 +2,7 @@ include $(top_srcdir)/misc/Makefile.common
# -fomit-frame-pointer is always needed. it might cause debug to not
# work, but at least it compiles.
-AM_CFLAGS = -fomit-frame-pointer
+AM_CFLAGS = -fomit-frame-pointer -fno-strict-aliasing
# CFLAGS is here to filter out -funroll-loops because it causes bad
# behavior of libavcodec
CFLAGS := `echo @CFLAGS@ | sed -e 's/-funroll-loops//g'`