# HG changeset patch # User mellum # Date 1032451585 0 # Node ID aad2dedb8b6a0035132871591353eb966c5cd5be # Parent 8be211ca9db9caae4637e5cfa8896fd0fd8479d4 * Remove -finline-limit=8000 (not supported by gcc 2.95) * Hack to force correct gcc arch flags for motion_est_alpha.c diff -r 8be211ca9db9 -r aad2dedb8b6a Makefile --- a/Makefile Thu Sep 19 10:26:49 2002 +0000 +++ b/Makefile Thu Sep 19 16:06:25 2002 +0000 @@ -69,7 +69,7 @@ ifeq ($(TARGET_ARCH_ALPHA),yes) OBJS += alpha/dsputil_alpha.o alpha/mpegvideo_alpha.o alpha/motion_est_alpha.o ASM_OBJS += alpha/dsputil_alpha_asm.o -CFLAGS += -Wa,-mpca56 -finline-limit=8000 -fforce-addr -freduce-all-givs +CFLAGS += -fforce-addr -freduce-all-givs endif ifeq ($(TARGET_ARCH_POWERPC),yes) @@ -110,6 +110,17 @@ %.o: %.S $(CC) $(CFLAGS) -c -o $@ $< +# motion_est_alpha uses the MVI extension, which is not available with +# -mcpu=ev4 (default) or ev5/ev56. Thus, force -mcpu=pca56 in those +# cases. +ifeq ($(TARGET_ARCH_ALPHA),yes) +alpha/motion_est_alpha.o: alpha/motion_est_alpha.c + cpu=`echo "$(CFLAGS)" | sed -n 's,.*-mcpu=\([a-zA-Z0-9]*\).*,\1,p'`; \ + case x"$$cpu" in x|xev[45]*) newcpu=pca56;; *) newcpu=$$cpu;; esac; \ + echo $(CC) $(CFLAGS) -mcpu=$$newcpu -c -o $@ $<;\ + $(CC) $(CFLAGS) -mcpu=$$newcpu -c -o $@ $< +endif + # depend only used by mplayer now dep: depend