Commit 9edde94f authored by Jonathan Rosser's avatar Jonathan Rosser Committed by Felix Paul Kühne

Specifying any CFLAGS clobbers any that liboil's configure script would

naturally choose.  With only an effective -O0 gcc 4.0.1 doesn't produce
code as intented for copy_u8_altivec, causing liboil to fail at runtime.

Summary, liboil really needs -O2 (always).
Signed-off-by: default avatarDavid Flynn <davidf@rd.bbc.co.uk>
Signed-off-by: default avatarFelix Paul Kühne <fkuehne@videolan.org>
parent e5ca2360
......@@ -2428,7 +2428,7 @@ liboil: liboil-$(OIL_VERSION).tar.gz
patch -d liboil -p1 < Patches/liboil-noshared.patch
.liboil: liboil
(cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) && make && make install)
(cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) CFLAGS="$(CFLAGS) -O2" && make && make install)
touch $@
CLEAN_FILE += .liboil
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment