d92b9efb6c
patch release with two bugfixes - fixes the list of dependencies of absl::Cord in the CMake build - bug fix for absl::Status::ErasePayload Signed-off-by: Michael Nosthoff <buildroot@heine.tech> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
25 lines
693 B
Makefile
25 lines
693 B
Makefile
################################################################################
|
|
#
|
|
# libabseil-cpp
|
|
#
|
|
################################################################################
|
|
|
|
LIBABSEIL_CPP_VERSION = 20200225.2
|
|
LIBABSEIL_CPP_SITE = $(call github,abseil,abseil-cpp,$(LIBABSEIL_CPP_VERSION))
|
|
LIBABSEIL_CPP_LICENSE = Apache-2.0
|
|
LIBABSEIL_CPP_LICENSE_FILES = LICENSE
|
|
LIBABSEIL_CPP_INSTALL_STAGING = YES
|
|
|
|
LIBABSEIL_CPP_CONF_OPTS = \
|
|
-DABSL_ENABLE_INSTALL=ON \
|
|
-DABSL_USE_GOOGLETEST_HEAD=OFF \
|
|
-DABSL_RUN_TESTS=OFF
|
|
|
|
HOST_LIBABSEIL_CPP_CONF_OPTS = \
|
|
-DABSL_ENABLE_INSTALL=ON \
|
|
-DABSL_USE_GOOGLETEST_HEAD=OFF \
|
|
-DABSL_RUN_TESTS=OFF
|
|
|
|
$(eval $(cmake-package))
|
|
$(eval $(host-cmake-package))
|