File tree Expand file tree Collapse file tree 5 files changed +18
-5
lines changed Expand file tree Collapse file tree 5 files changed +18
-5
lines changed Original file line number Diff line number Diff line change @@ -40,8 +40,14 @@ if(WITH_ABSEIL)
40
40
target_link_libraries (
41
41
opentelemetry_api INTERFACE absl::bad_variant_access absl::any absl::base
42
42
absl::bits absl::city )
43
- list (APPEND TARGET_DEPS "absl_bad_variant_access" "absl_any absl_base"
44
- "absl_bits" "absl_city" )
43
+ list (
44
+ APPEND
45
+ TARGET_DEPS
46
+ "absl_bad_variant_access"
47
+ "absl_any"
48
+ "absl_base"
49
+ "absl_bits"
50
+ "absl_city" )
45
51
endif ()
46
52
47
53
if (WITH_STL STREQUAL "OFF" )
Original file line number Diff line number Diff line change @@ -55,6 +55,13 @@ def opentelemetry_cpp_deps():
55
55
56
56
# Load abseil dependency(optional)
57
57
maybe (
58
+ #
59
+ # Important note:
60
+ #
61
+ # The bazel build still uses abseil-cpp-20220623.1 here.
62
+ #
63
+ # Upgrading to abseil-cpp-20240116.1 breaks the OTLP build, reason unknown.
64
+ #
58
65
http_archive ,
59
66
name = "com_google_absl" ,
60
67
sha256 = "91ac87d30cc6d79f9ab974c51874a704de9c2647c40f6932597329a282217ba8" ,
Original file line number Diff line number Diff line change @@ -529,7 +529,7 @@ elif [[ "$1" == "code.coverage" ]]; then
529
529
exit 0
530
530
elif [[ " $1 " == " third_party.tags" ]]; then
531
531
echo " gRPC=v1.49.2" > third_party_release
532
- echo " abseil=20220623 .1" >> third_party_release
532
+ echo " abseil=20240116 .1" >> third_party_release
533
533
git submodule foreach --quiet ' echo "$name=$(git describe --tags HEAD)"' | sed ' s:.*/::' >> third_party_release
534
534
exit 0
535
535
fi
Original file line number Diff line number Diff line change 5
5
6
6
set -ex
7
7
export DEBIAN_FRONTEND=noninteractive
8
- [ -z " ${ABSEIL_CPP_VERSION} " ] && export ABSEIL_CPP_VERSION=" 20220623 .1"
8
+ [ -z " ${ABSEIL_CPP_VERSION} " ] && export ABSEIL_CPP_VERSION=" 20240116 .1"
9
9
10
10
BUILD_DIR=/tmp/
11
11
INSTALL_DIR=/usr/local/
Original file line number Diff line number Diff line change 14
14
#
15
15
16
16
gRPC=v1.49.2
17
- abseil=20220623 .1
17
+ abseil=20240116 .1
18
18
benchmark=v1.8.3
19
19
googletest=1.14.0
20
20
ms-gsl=v3.1.0-67-g6f45293
You can’t perform that action at this time.
0 commit comments