mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-08-02 07:57:43 +00:00
package/ola: fix missing numpy
OLAs RDM test option needs NumPy. Note that we need to pass `ac_cv_have_pymod_numpy=yes` as NumPy builds some shared libraries and ola checks for NumPy using a host Python test program which fails with 'wrong ELF class'. Fixes: http://autobuild.buildroot.net/results/750/750c9bcc753e2c1b7b05d6c43fabf4c405e15f04/ http://autobuild.buildroot.net/results/24a/24ada1e0ec695cb12028048728a9d1e2bcf75a03/ http://autobuild.buildroot.net/results/111/111c5f3eed6a5931de27a1b0b02be6e2114198e6/ .. and more. Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
9d5241615a
commit
1683c91c12
@ -54,6 +54,8 @@ config BR2_PACKAGE_OLA_EXAMPLES
|
|||||||
config BR2_PACKAGE_OLA_RDM_TESTS
|
config BR2_PACKAGE_OLA_RDM_TESTS
|
||||||
bool "rdm tests"
|
bool "rdm tests"
|
||||||
depends on BR2_PACKAGE_OLA_PYTHON_BINDINGS
|
depends on BR2_PACKAGE_OLA_PYTHON_BINDINGS
|
||||||
|
depends on BR2_PACKAGE_PYTHON_NUMPY_ARCH_SUPPORTS
|
||||||
|
select BR2_PACKAGE_PYTHON_NUMPY
|
||||||
help
|
help
|
||||||
Build OLA RDM tests.
|
Build OLA RDM tests.
|
||||||
|
|
||||||
|
@ -87,6 +87,11 @@ endif
|
|||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_OLA_RDM_TESTS),y)
|
ifeq ($(BR2_PACKAGE_OLA_RDM_TESTS),y)
|
||||||
OLA_CONF_OPTS += --enable-rdm-tests
|
OLA_CONF_OPTS += --enable-rdm-tests
|
||||||
|
OLA_DEPENDENCIES += python-numpy
|
||||||
|
# needed as numpy builds some shared libraries and ola checks for
|
||||||
|
# numpy using a host python test program which fails with 'wrong ELF
|
||||||
|
# class'.
|
||||||
|
OLA_CONF_ENV = ac_cv_have_pymod_numpy=yes
|
||||||
else
|
else
|
||||||
OLA_CONF_OPTS += --disable-rdm-tests
|
OLA_CONF_OPTS += --disable-rdm-tests
|
||||||
endif
|
endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user