From 197e67e542c909cd4d4d45ef48faf3cae7d586b0 Mon Sep 17 00:00:00 2001 From: Fabrice Fontaine Date: Sat, 27 Jul 2024 18:50:28 +0200 Subject: [PATCH] package/gtkiostream: add BR2_PACKAGE_GTKIOSTREAM_ARCH_SUPPORTS gtkiostream only supports little-endian since its addition in commit fab48302865e5c0c98d91b696bc90e75e38189bb resulting in the following build failure: In file included from BitStream.C:23: ../include/BitStream.H:35:2: error: #error "iobitstream not tested on big endian systems" 35 | #error "iobitstream not tested on big endian systems" | ^~~~~ Fixes: fab48302865e5c0c98d91b696bc90e75e38189bb - http://autobuild.buildroot.org/results/aec24d92cc2196596413cf509d686f1f8d1eca95 Signed-off-by: Fabrice Fontaine Signed-off-by: Thomas Petazzoni --- package/gtkiostream/Config.in | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/package/gtkiostream/Config.in b/package/gtkiostream/Config.in index 1d1ec27346..334b4dc331 100644 --- a/package/gtkiostream/Config.in +++ b/package/gtkiostream/Config.in @@ -1,5 +1,10 @@ +config BR2_PACKAGE_GTKIOSTREAM_ARCH_SUPPORTS + bool + default y if BR2_ENDIAN = "LITTLE" + config BR2_PACKAGE_GTKIOSTREAM bool "gtkiostream" + depends on BR2_PACKAGE_GTKIOSTREAM_ARCH_SUPPORTS depends on BR2_INSTALL_LIBSTDCPP # eigen depends on BR2_TOOLCHAIN_HAS_THREADS select BR2_PACKAGE_ALSA_LIB_MIXER if BR2_PACKAGE_ALSA_LIB @@ -14,5 +19,6 @@ config BR2_PACKAGE_GTKIOSTREAM https://github.com/flatmax/gtkiostream comment "gtkiostream needs a toolchain w/ C++, threads" + depends on BR2_PACKAGE_GTKIOSTREAM_ARCH_SUPPORTS depends on !BR2_INSTALL_LIBSTDCPP || \ !BR2_TOOLCHAIN_HAS_THREADS