diff options
author | Stephen Torri <storri@users.sourceforge.net> | 2003-03-17 09:41:58 +0000 |
---|---|---|
committer | Stephen Torri <storri@users.sourceforge.net> | 2003-03-17 09:41:58 +0000 |
commit | 7f734e68339a364a0d9f5edbf2fd95b4947e97f8 (patch) | |
tree | 230c3983769e149815f45895c46b74288f6e4c04 | |
parent | c11aa39f7c9879842bd12a6c9a56cec047b5bfbd (diff) | |
download | xine-lib-7f734e68339a364a0d9f5edbf2fd95b4947e97f8.tar.gz xine-lib-7f734e68339a364a0d9f5edbf2fd95b4947e97f8.tar.bz2 |
Removes -funroll-loops from i386 build CFLAGS
CVS patchset: 4434
CVS date: 2003/03/17 09:41:58
-rw-r--r-- | src/libffmpeg/libavcodec/i386/Makefile.am | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/libffmpeg/libavcodec/i386/Makefile.am b/src/libffmpeg/libavcodec/i386/Makefile.am index 6386800f6..58fa8c47e 100644 --- a/src/libffmpeg/libavcodec/i386/Makefile.am +++ b/src/libffmpeg/libavcodec/i386/Makefile.am @@ -4,7 +4,10 @@ # we must not use CFLAGS here, gcc optimizations produce # bad code if we do so. -AM_CFLAGS = -O2 $(LIBFFMPEG_CFLAGS) +AM_CFLAGS = $(LIBFFMPEG_CFLAGS) +# CFLAGS is here to filter out -funroll-loops because it causes bad +# behavior of libavcodec +CFLAGS = `echo @CFLAGS@ | sed -e 's/-funroll-loops//g'` ASFLAGS = |