Skip to content

Commit 32309a8

Browse files
nimrod-gileadicopybara-github
authored andcommitted
Go back to an abseil version that works with the latest grpc.
The line that was setting MUJOCO_DEP_VERSION_abseil in CMakeLists.txt actually did nothing, because that variable was set by the MuJoCo CMakeLists, and cache values don't get overridden by default (https://cmake.org/cmake/help/latest/command/set.html#set-cache-entry). I removed the other calls to `set` that do nothing. PiperOrigin-RevId: 604925771 Change-Id: Ie649282cb28fdf11d4d61ffe6e76b1e4d22133da
1 parent e28230c commit 32309a8

File tree

1 file changed

+4
-11
lines changed

1 file changed

+4
-11
lines changed

CMakeLists.txt

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -77,19 +77,12 @@ findorfetch(
7777
EXCLUDE_FROM_ALL
7878
)
7979

80+
# TODO(nimrod): Update to the latest version of abseil, or use the one defined
81+
# by MuJoCo, once grpc fix their build issues.
8082
set(MUJOCO_DEP_VERSION_abseil
81-
c8a2f92586fe9b4e1aff049108f5db8064924d8e # LTS 20230125.1
83+
fb3621f4f897824c0dbe0615fa94543df6192f30 # LTS 20230802.1
8284
CACHE STRING "Version of `abseil` to be fetched."
83-
)
84-
85-
set(MUJOCO_DEP_VERSION_glfw3
86-
7482de6071d21db77a7236155da44c172a7f6c9e # 3.3.8
87-
CACHE STRING "Version of `glfw` to be fetched."
88-
)
89-
90-
set(MJPC_DEP_VERSION_lodepng
91-
b4ed2cd7ecf61d29076169b49199371456d4f90b
92-
CACHE STRING "Version of `lodepng` to be fetched."
85+
FORCE
9386
)
9487

9588
set(BUILD_SHARED_LIBS_OLD ${BUILD_SHARED_LIBS})

0 commit comments

Comments
 (0)