diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-11-30 16:57:28 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-11-30 16:57:28 +0000 |
commit | 52ad2f390e364300cc3da22a3f18f15f59624a3d (patch) | |
tree | 65b2af9b39ee18c7a20d8d6c7471fcabb7027e28 | |
parent | a4fa192c81ff1db23d05bf627bee051cf8c2918a (diff) | |
download | ffmpeg-52ad2f390e364300cc3da22a3f18f15f59624a3d.tar.gz |
Remove ineffectual hack that attempts to build ppc/check_altivec.o without
AltiVec flags. The flags are set by configure and used to compile all files
anyway. Setting extra AltiVec options here just duplicates them for the files
for which they are set.
Originally committed as revision 15959 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/Makefile | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 0998993e08..a4b43be48f 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -468,10 +468,6 @@ ALTIVEC-OBJS-$(CONFIG_SNOW_DECODER) += ppc/snow_altivec.o ALTIVEC-OBJS-$(CONFIG_VC1_DECODER) += ppc/vc1dsp_altivec.o ALTIVEC-OBJS-$(CONFIG_WMV3_DECODER) += ppc/vc1dsp_altivec.o -# -maltivec is needed in order to build AltiVec code. -$(addprefix $(SUBDIR),$(ALTIVEC-OBJS-yes)): CFLAGS += -maltivec -mabi=altivec - -# check_altivec must be built without -maltivec OBJS-$(HAVE_ALTIVEC) += $(ALTIVEC-OBJS-yes) \ ppc/check_altivec.o |