1comment "python-libconfig needs a glibc or uClibc toolchain w/ C++, threads" 2 depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \ 3 BR2_TOOLCHAIN_USES_MUSL 4 5config BR2_PACKAGE_PYTHON_LIBCONFIG 6 bool "python-libconfig" 7 depends on BR2_INSTALL_LIBSTDCPP 8 depends on BR2_TOOLCHAIN_HAS_THREADS 9 # error: invalid use of incomplete type 'struct _IO_FILE' 10 depends on !BR2_TOOLCHAIN_USES_MUSL 11 select BR2_PACKAGE_BOOST 12 select BR2_PACKAGE_BOOST_PYTHON 13 select BR2_PACKAGE_LIBCONFIG 14 help 15 Python bindings to the C++ library libconfig 16 17 Libconfig is a simple library for manipulating structured 18 configuration files. The file format is more compact and more 19 readable than XML. And unlike XML, it is type-aware, so it is 20 not necessary to do string parsing in application code. 21 http://www.hyperrealm.com/libconfig/ 22 23 https://github.com/cnangel/python-libconfig 24