Config.in 712 B

123456789101112131415161718192021222324252627
  1. config BR2_PACKAGE_PYTHON_NUMPY_ARCH_SUPPORTS
  2. bool
  3. # Numpy has some CPU specific code
  4. # ARC toolchain issues for ARCompact
  5. default y if BR2_arc && !(BR2_arc770d || BR2_arc750d)
  6. default y if BR2_aarch64
  7. default y if BR2_arm
  8. default y if BR2_armeb
  9. default y if BR2_i386
  10. default y if BR2_mips
  11. default y if BR2_mipsel
  12. default y if BR2_powerpc
  13. default y if BR2_powerpc64
  14. default y if BR2_sh
  15. default y if BR2_x86_64
  16. config BR2_PACKAGE_PYTHON_NUMPY
  17. bool "python-numpy"
  18. depends on BR2_PACKAGE_PYTHON_NUMPY_ARCH_SUPPORTS
  19. help
  20. NumPy is the fundamental package for scientific computing
  21. with Python.
  22. Note that NumPy needs fenv.h fully supported by the
  23. C library.
  24. http://www.numpy.org/