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
|
2017-11-12 15:17:51 +01:00
|
|
|
# ARCompact build fails due to toolchain issue
|
|
|
|
# ARC HS38 build fails on glibc due to missing FE_* definitions
|
|
|
|
default y if BR2_arc && BR2_archs38 && !BR2_TOOLCHAIN_USES_GLIBC
|
2017-11-09 16:15:50 +01:00
|
|
|
default y if BR2_aarch64
|
2017-11-12 15:17:50 +01:00
|
|
|
default y if BR2_arm
|
2017-11-09 16:15:50 +01:00
|
|
|
default y if BR2_armeb
|
2017-11-12 15:17:50 +01:00
|
|
|
default y if BR2_i386
|
2017-11-09 16:15:50 +01: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 16:15:50 +01: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/
|