826a2bc18b
In commitb0f025386f
a patch was added to make sure that python-numpy does work in uClibc. This patch was needed for the x86 architecture, because uClibc in fact does support fenv for x86. However, we don't turn on this support in our uClibc config. Because the Config.in depends still allowed uClibc for x86, this lead to a built failure, which lead to the fix in commitb0f02538
. But since this fix also fixes it for all other (supported) architectures, we can just remove the !uClibc dependency completely. This is also propagated to the reverse dependency in opencv3. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Cc: Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 lines
418 B
Plaintext
15 lines
418 B
Plaintext
config BR2_PACKAGE_PYTHON_NUMPY
|
|
bool "python-numpy"
|
|
# Numpy has some CPU specific code
|
|
depends on BR2_aarch64 || BR2_arm || BR2_armeb || BR2_i386 \
|
|
|| BR2_mips || BR2_mipsel || BR2_powerpc || BR2_powerpc64 \
|
|
|| BR2_sh || BR2_x86_64
|
|
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/
|