Config.in 924 B

1234567891011121314151617181920212223242526272829303132
  1. config BR2_PACKAGE_PYTHON_NUMPY_ARCH_SUPPORTS
  2. bool
  3. # Numpy has some CPU specific code
  4. default y if BR2_arc
  5. default y if BR2_aarch64
  6. default y if BR2_arm
  7. default y if BR2_armeb
  8. default y if BR2_i386
  9. default y if BR2_mips
  10. default y if BR2_mipsel
  11. default y if BR2_powerpc
  12. default y if BR2_powerpc64
  13. default y if BR2_sh
  14. default y if BR2_x86_64
  15. config BR2_PACKAGE_PYTHON_NUMPY
  16. bool "python-numpy"
  17. depends on BR2_PACKAGE_PYTHON_NUMPY_ARCH_SUPPORTS
  18. # python-numpy needs fenv.h which is not provided by uclibc
  19. depends on BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_MUSL
  20. help
  21. NumPy is the fundamental package for scientific computing
  22. with Python.
  23. Note that NumPy needs fenv.h fully supported by the
  24. C library.
  25. http://www.numpy.org/
  26. comment "python-numpy needs glibc or musl"
  27. depends on BR2_PACKAGE_PYTHON_NUMPY_ARCH_SUPPORTS
  28. depends on !(BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_MUSL)