Add a dependency on ARM mode for ARM5E to fix the following build failure on Cortex-M3 which only supports Thumb2 mode: /tmp/ccJHSu7y.s:158: Error: selected processor does not support `smulbb r1,r6,lr' in Thumb mode Fixes: - http://autobuild.buildroot.org/results/1575da3a8ea2bcde7fa9885df317a12d5c36918f Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> (cherry picked from commit 28be64c1e0ad0ba014257cda116c2f07236d0d4b) Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
25 lines
466 B
Plaintext
25 lines
466 B
Plaintext
config BR2_PACKAGE_SPEEX
|
|
bool "speex"
|
|
select BR2_PACKAGE_LIBOGG
|
|
help
|
|
Speex is an Open Source/Free Software patent-free
|
|
audio compression format designed for speech.
|
|
It can be used for Voice over IP
|
|
|
|
http://www.speex.org/
|
|
|
|
if BR2_PACKAGE_SPEEX
|
|
|
|
config BR2_PACKAGE_SPEEX_ARM4
|
|
bool
|
|
default y
|
|
depends on BR2_ARM_CPU_ARMV4
|
|
|
|
config BR2_PACKAGE_SPEEX_ARM5E
|
|
bool
|
|
default y
|
|
depends on BR2_arm && BR2_ARM_CPU_HAS_ARM && \
|
|
!BR2_PACKAGE_SPEEX_ARM4
|
|
|
|
endif
|