Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion score/launch_manager/src/daemon/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,12 @@ cc_binary(
name = "launch_manager",
srcs = ["src/main.cpp"],
linkopts = select({
"@platforms//os:linux": ["-lpthread"],
# glibc v2.34 integrated libpthread, libdl, libutil, libanl and librt into libc.
# However we keep these links to the old libraries for compatibility with older glibc versions.
"@platforms//os:linux": [
"-lpthread",
"-lrt",
Comment thread
hskang-amelia marked this conversation as resolved.
],
"//conditions:default": [],
}),
visibility = ["//score/launch_manager:__subpackages__"],
Expand Down
Loading