1config BR2_PACKAGE_GLOG
2	bool "glog"
3	depends on BR2_INSTALL_LIBSTDCPP
4	depends on BR2_TOOLCHAIN_HAS_THREADS
5	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_6 # C++14
6	help
7	  C++ implementation of the Google logging module
8
9	  https://github.com/google/glog
10
11comment "glog needs a toolchain w/ C++, threads, gcc >= 6"
12	depends on !BR2_INSTALL_LIBSTDCPP || \
13		!BR2_TOOLCHAIN_HAS_THREADS || \
14		!BR2_TOOLCHAIN_GCC_AT_LEAST_6
15