Commit 46d6d832 authored by Peter Korsgaard's avatar Peter Korsgaard
Browse files

speex: automate selection of arm specific optimizations

ARM version info according to wikipedia, hopefully I got it all correct.
parent 28b2a5bd
Loading
Loading
Loading
Loading
+13 −5
Original line number Diff line number Diff line
@@ -8,10 +8,18 @@ config BR2_PACKAGE_SPEEX

	  http://www.speex.org/

config BR2_PACKAGE_SPEEX_ARM_GENERIC
       bool
       default y
       depends on BR2_PACKAGE_SPEEX && (BR2_generic_arm || BR2_arm610 || BR2_arm710)

config BR2_PACKAGE_SPEEX_ARM4
       bool
       default y
       depends on BR2_PACKAGE_SPEEX && (BR2_arm7tdmi || BR2_arm720t || BR2_arm920t || BR2_arm922t || BR2_sa110 || BR2_sa1100)

config BR2_PACKAGE_SPEEX_ARM5E
	bool "Support ARM5E instruction set"
	default y
	depends on BR2_PACKAGE_SPEEX && BR2_arm
	help
	  Use the additional instructions available in the ARM5E
	  or later cores.
	bool
	depends on BR2_PACKAGE_SPEEX && BR2_arm && !(BR2_PACKAGE_SPEEX_ARM_GENERIC || BR2_PACKAGE_SPEEX_ARM4)
+4 −0
Original line number Diff line number Diff line
@@ -14,6 +14,10 @@ SPEEX_DEPENDENCIES = libogg
SPEEX_CONF_OPT = --with-ogg-libraries=$(STAGING_DIR)/usr/lib --with-ogg-includes=$(STAGING_DIR)/usr/include \
		--disable-static --enable-fixed-point $(DISABLE_NLS)

ifeq ($(BR2_PACKAGE_SPEEX_ARM4),y)
	SPEEX_CONF_OPT += --enable-arm4-asm
endif

ifeq ($(BR2_PACKAGE_SPEEX_ARM5E),y)
	SPEEX_CONF_OPT += --enable-arm5e-asm
endif