Skip to content

Commit

Permalink
Change depot_tools' PATH precedence to last
Browse files Browse the repository at this point in the history
Otherwise building WebRTC explodes in python3 processes.

On Ubuntu 22 vpython3 is required in PATH, so depot_tools cannot be
omitted.
  • Loading branch information
bear101 committed Nov 14, 2024
1 parent 9875c24 commit 037a259
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Library/TeamTalkLib/build/webrtc/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ else()
)
ExternalProject_Get_Property(depot-tools SOURCE_DIR)
set (DEPOTTOOLS_DIR ${SOURCE_DIR})
set (DEPOTTOOLS_EXPORT export PATH=${DEPOTTOOLS_DIR}:$ENV{PATH} OPENSSL_DIR=${OPENSSL_DIR})
set (DEPOTTOOLS_EXPORT export PATH=$ENV{PATH}:${DEPOTTOOLS_DIR} OPENSSL_DIR=${OPENSSL_DIR})

if (${CMAKE_SYSTEM_NAME} MATCHES "iOS")
set (WEBRTC_REPO_NAME webrtc_ios)
Expand Down

0 comments on commit 037a259

Please sign in to comment.