|
@@ -2,6 +2,7 @@ config BR2_PACKAGE_LIBABSEIL_CPP
|
|
|
bool "libabseil-cpp"
|
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
|
+ depends on !BR2_STATIC_LIBS # uses dlfcn.h
|
|
|
help
|
|
|
Abseil is an open-source collection of C++ library code
|
|
|
designed to augment the C++ standard library. The Abseil
|
|
@@ -11,5 +12,6 @@ config BR2_PACKAGE_LIBABSEIL_CPP
|
|
|
|
|
|
https://github.com/abseil/abseil-cpp
|
|
|
|
|
|
-comment "libabseil-cpp needs a toolchain w/ C++, threads"
|
|
|
- depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
|
|
|
+comment "libabseil-cpp needs a toolchain w/ C++, threads, dynamic library"
|
|
|
+ depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
|
+ BR2_STATIC_LIBS
|