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