1config BR2_PACKAGE_SPDLOG 2 bool "spdlog" 3 depends on BR2_INSTALL_LIBSTDCPP 4 depends on BR2_TOOLCHAIN_HAS_THREADS 5 depends on BR2_USE_WCHAR # fmt 6 select BR2_PACKAGE_FMT 7 help 8 Very fast, header-only/compiled, C++ logging library. 9 10 https://github.com/gabime/spdlog 11 12comment "spdlog needs a toolchain w/ C++, threads, wchar" 13 depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS \ 14 || !BR2_USE_WCHAR 15