package/gtest: bump to version 1.14.0

- tag prefix changed from 'release-' to 'v'
- C++14 is now required which gcc5 already provides
  (tested with bootlin toolchain armv7-eabihf--glibc--stable-2017.05-toolchains-1-1)

Signed-off-by: Michael Nosthoff <buildroot@heine.tech>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Michael Nosthoff 2023-09-18 12:30:35 +02:00 committed by Thomas Petazzoni
parent 8f9d6e07f2
commit 00e23b82b4
3 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@ config BR2_PACKAGE_GTEST
depends on BR2_USE_WCHAR
depends on BR2_TOOLCHAIN_HAS_THREADS
depends on BR2_INSTALL_LIBSTDCPP
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # C++11
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # C++14
depends on BR2_USE_MMU # fork()
help
Google's framework for writing C++ tests on a variety of

View File

@ -1,3 +1,3 @@
# Locally computed:
sha256 81964fe578e9bd7c94dfdb09c8e4d6e6759e19967e397dbea48d1c10e45d0df2 gtest-1.12.1.tar.gz
sha256 8ad598c73ad796e0d8280b082cebd82a630d73e73cd3c70057938a6501bba5d7 gtest-1.14.0.tar.gz
sha256 9702de7e4117a8e2b20dafab11ffda58c198aede066406496bef670d40a22138 LICENSE

View File

@ -4,8 +4,8 @@
#
################################################################################
GTEST_VERSION = 1.12.1
GTEST_SITE = $(call github,google,googletest,release-$(GTEST_VERSION))
GTEST_VERSION = 1.14.0
GTEST_SITE = $(call github,google,googletest,v$(GTEST_VERSION))
GTEST_INSTALL_STAGING = YES
GTEST_INSTALL_TARGET = NO
GTEST_LICENSE = BSD-3-Clause