1config BR2_PACKAGE_SDBUSPLUS 2 bool "sdbusplus" 3 depends on BR2_INSTALL_LIBSTDCPP 4 depends on BR2_PACKAGE_SYSTEMD 5 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # C++17 6 help 7 A C++ library for sd-bus with a bindings and doc generator. 8 9 This will build the target library. See the host package for 10 the bindings and documentation generation program. 11 12 https://github.com/openbmc/sdbusplus 13 14comment "sdbusplus needs systemd and a toolchain w/ C++, gcc >= 7" 15 depends on !BR2_PACKAGE_SYSTEMD || !BR2_INSTALL_LIBSTDCPP || \ 16 !BR2_TOOLCHAIN_GCC_AT_LEAST_7 17