1
1
mirror of https://github.com/OpenVoiceOS/OpenVoiceOS synced 2024-12-28 01:30:59 +01:00
OpenVoiceOS/buildroot-external/package/python-scipy/Config.in
Peter Steenbergen 987755a337 Add precise-lite support + all dependencies for it.
(No TFlite_runtime package included as of yet)
2021-09-23 14:55:05 +02:00

25 lines
838 B
Plaintext

config BR2_PACKAGE_PYTHON_SCIPY
bool "python-scipy"
depends on BR2_TOOLCHAIN_HAS_FORTRAN
depends on BR2_PACKAGE_OPENBLAS_ARCH_SUPPORTS # build
depends on BR2_PACKAGE_PYTHON_NUMPY_ARCH_SUPPORTS # python-numpy
depends on BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_MUSL # python-numpy
select BR2_PACKAGE_OPENBLAS # build
select BR2_PACKAGE_CLAPACK # build
select BR2_PACKAGE_PYTHON_NUMPY # runtime
help
Scipy is a Python package that includes modules for
statistics, optimization, linear algebra and much
more.
http://www.scipy.org/
comment "python-scipy needs toolchain with fortran"
depends on !BR2_TOOLCHAIN_HAS_FORTRAN
comment "python-scipy needs lib openblas"
depends on !BR2_PACKAGE_OPENBLAS_ARCH_SUPPORTS
comment "python-scipy needs python-numpy"
depends on !BR2_PACKAGE_PYTHON_NUMPY_ARCH_SUPPORTS