2015-10-07 09:43:17 +02:00
|
|
|
config BR2_PACKAGE_PYTHON_NUMPY_ARCH_SUPPORTS
|
|
|
|
|
bool
|
2014-07-18 10:00:41 +02:00
|
|
|
# Numpy has some CPU specific code
|
2019-01-14 18:43:16 +03:00
|
|
|
default y if BR2_arc
|
2017-11-09 18:15:50 +03:00
|
|
|
default y if BR2_aarch64
|
2017-11-12 15:17:50 +01:00
|
|
|
default y if BR2_arm
|
2017-11-09 18:15:50 +03:00
|
|
|
default y if BR2_armeb
|
2017-11-12 15:17:50 +01:00
|
|
|
default y if BR2_i386
|
2017-11-09 18:15:50 +03:00
|
|
|
default y if BR2_mips
|
|
|
|
|
default y if BR2_mipsel
|
|
|
|
|
default y if BR2_powerpc
|
2017-11-12 15:17:50 +01:00
|
|
|
default y if BR2_powerpc64
|
|
|
|
|
default y if BR2_sh
|
2017-11-09 18:15:50 +03:00
|
|
|
default y if BR2_x86_64
|
2015-10-07 09:43:17 +02:00
|
|
|
|
|
|
|
|
config BR2_PACKAGE_PYTHON_NUMPY
|
|
|
|
|
bool "python-numpy"
|
|
|
|
|
depends on BR2_PACKAGE_PYTHON_NUMPY_ARCH_SUPPORTS
|
2014-04-23 01:15:37 +02:00
|
|
|
help
|
|
|
|
|
NumPy is the fundamental package for scientific computing
|
|
|
|
|
with Python.
|
|
|
|
|
|
|
|
|
|
Note that NumPy needs fenv.h fully supported by the
|
|
|
|
|
C library.
|
|
|
|
|
|
|
|
|
|
http://www.numpy.org/
|