From b25176ee9a373d00ab18e46d3e39f6a56dfbbfcf Mon Sep 17 00:00:00 2001 From: Fabrice Fontaine Date: Tue, 2 Jan 2024 18:17:59 +0100 Subject: [PATCH] package/python-contourpy: needs C++ C++ is mandatory resulting in the following build failure since the addition of the package in commit 1e7f0794bbb0075285dc3b4dab8484f12adbb886: ../output-1/build/python-contourpy-1.1.0/meson.build:1:0: ERROR: Unable to detect GNU compiler type: Fixes: - http://autobuild.buildroot.org/results/6b50f9621b00aab384cc2dde77fae7daff46d08b Signed-off-by: Fabrice Fontaine Signed-off-by: Thomas Petazzoni --- package/python-contourpy/Config.in | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package/python-contourpy/Config.in b/package/python-contourpy/Config.in index 4843884a97..313d270dda 100644 --- a/package/python-contourpy/Config.in +++ b/package/python-contourpy/Config.in @@ -1,8 +1,12 @@ config BR2_PACKAGE_PYTHON_CONTOURPY bool "python-contourpy" + depends on BR2_INSTALL_LIBSTDCPP select BR2_PACKAGE_PYTHON_PYBIND help Python library for calculating contours of 2D quadrilateral grids. https://github.com/contourpy/contourpy + +comment "python-contourpy needs a toolchain w/ C++" + depends on !BR2_INSTALL_LIBSTDCPP