Config.in 794 B

12345678910111213141516171819202122232425262728
  1. config BR2_PACKAGE_PYTHON_NUMPY_ARCH_SUPPORTS
  2. bool
  3. # Numpy has some CPU specific code
  4. # ARCompact build fails due to toolchain issue
  5. # ARC HS38 build fails on glibc due to missing FE_* definitions
  6. default y if BR2_arc && BR2_archs38 && !BR2_TOOLCHAIN_USES_GLIBC
  7. default y if BR2_aarch64
  8. default y if BR2_arm
  9. default y if BR2_armeb
  10. default y if BR2_i386
  11. default y if BR2_mips
  12. default y if BR2_mipsel
  13. default y if BR2_powerpc
  14. default y if BR2_powerpc64
  15. default y if BR2_sh
  16. default y if BR2_x86_64
  17. config BR2_PACKAGE_PYTHON_NUMPY
  18. bool "python-numpy"
  19. depends on BR2_PACKAGE_PYTHON_NUMPY_ARCH_SUPPORTS
  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/