befab216a2
The toolchain currently doesn't build for nommu ARM and is in need of serious work. Problem is there are no emulation targets and real ARM(7TDMI/720T/740T) hardware that's capable of running linux (enough memory, having a memory controller...) is VERY rare and uses very old versions to make it usable. The ARM nommu focus should go into Cortex M series processors that are obtainable at reasonable cost on modern hardware that has external memory controllers. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
87 lines
2.4 KiB
Makefile
87 lines
2.4 KiB
Makefile
################################################################################
|
|
#
|
|
# gst1-libav
|
|
#
|
|
################################################################################
|
|
|
|
GST1_LIBAV_VERSION = 1.2.4
|
|
GST1_LIBAV_SOURCE = gst-libav-$(GST1_LIBAV_VERSION).tar.xz
|
|
GST1_LIBAV_SITE = http://gstreamer.freedesktop.org/src/gst-libav
|
|
|
|
GST1_LIBAV_DEPENDENCIES = host-pkgconf gstreamer1 gst1-plugins-base
|
|
|
|
GST1_LIBAV_CONF_EXTRA_OPT = \
|
|
--cross-prefix=$(TARGET_CROSS) \
|
|
--target-os=linux \
|
|
$(if $(BR2_ENABLE_DEBUG),--enable-debug,--disable-debug)
|
|
|
|
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
|
GST1_LIBAV_CONF_EXTRA_OPT += --enable-zlib
|
|
GST1_LIBAV_DEPENDENCIES += zlib
|
|
else
|
|
GST1_LIBAV_CONF_EXTRA_OPT += --disable-zlib
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_BZIP2),y)
|
|
GST1_LIBAV_CONF_EXTRA_OPT += --enable-bzlib
|
|
GST1_LIBAV_DEPENDENCIES += bzip2
|
|
else
|
|
GST1_LIBAV_CONF_EXTRA_OPT += --disable-bzlib
|
|
endif
|
|
|
|
ifeq ($(BR2_X86_CPU_HAS_MMX),y)
|
|
GST1_LIBAV_CONF_EXTRA_OPT += --enable-yasm
|
|
GST1_LIBAV_DEPENDENCIES += host-yasm
|
|
else
|
|
GST1_LIBAV_CONF_EXTRA_OPT += --disable-yasm
|
|
GST1_LIBAV_CONF_EXTRA_OPT += --disable-mmx
|
|
endif
|
|
|
|
ifeq ($(BR2_X86_CPU_HAS_SSE),y)
|
|
GST1_LIBAV_CONF_EXTRA_OPT += --enable-sse
|
|
else
|
|
GST1_LIBAV_CONF_EXTRA_OPT += --disable-sse
|
|
endif
|
|
|
|
ifeq ($(BR2_X86_CPU_HAS_SSSE3),y)
|
|
GST1_LIBAV_CONF_EXTRA_OPT += --enable-ssse3
|
|
else
|
|
GST1_LIBAV_CONF_EXTRA_OPT += --disable-ssse3
|
|
endif
|
|
|
|
# Explicitly disable everything that doesn't match for ARM
|
|
# FFMPEG "autodetects" by compiling an extended instruction via AS
|
|
# This works on compilers that aren't built for generic by default
|
|
ifeq ($(BR2_arm920t)$(BR2_arm922t)$(BR2_strongarm)$(BR2_fa526),y)
|
|
GST1_LIBAV_CONF_EXTRA_OPT += --disable-armv5te
|
|
endif
|
|
ifeq ($(BR2_arm1136jf_s)$(BR2_arm1176jz_s)$(BR2_arm1176jzf_s),y)
|
|
GST1_LIBAV_CONF_EXTRA_OPT += --enable-armv6
|
|
else
|
|
GST1_LIBAV_CONF_EXTRA_OPT += --disable-armv6 --disable-armv6t2
|
|
endif
|
|
ifeq ($(BR2_ARM_CPU_HAS_NEON),y)
|
|
GST1_LIBAV_CONF_EXTRA_OPT += --enable-neon
|
|
else
|
|
GST1_LIBAV_CONF_EXTRA_OPT += --disable-neon
|
|
endif
|
|
ifeq ($(BR2_ARM_CPU_HAS_VFPV2),y)
|
|
GST1_LIBAV_CONF_EXTRA_OPT += --enable-vfp
|
|
else
|
|
GST1_LIBAV_CONF_EXTRA_OPT += --disable-vfp
|
|
endif
|
|
|
|
# Set powerpc altivec appropriately
|
|
ifeq ($(BR2_powerpc),y)
|
|
ifeq ($(BR2_powerpc_7400)$(BR2_powerpc_7450)$(BR2_powerpc_970),y)
|
|
GST1_LIBAV_CONF_EXTRA_OPT += --enable-altivec
|
|
else
|
|
GST1_LIBAV_CONF_EXTRA_OPT += --disable-altivec
|
|
endif
|
|
endif
|
|
|
|
GST1_LIBAV_CONF_OPT = \
|
|
--with-libav-extra-configure="$(GST1_LIBAV_CONF_EXTRA_OPT)"
|
|
|
|
$(eval $(autotools-package))
|