Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
authorAdam Langley <agl@google.com>2015-05-05 20:20:00 +0300
committerAdam Langley <agl@google.com>2015-05-05 21:28:26 +0300
commite60e2a483b3153f2de462371713cbf16e2764541 (patch)
treeb9e1c794b6bd6db9d8cabb37b5061c0950d1a62d /tool
parent126320c881d64cdfd1851d359da363e83d5c0f6e (diff)
tool: we don't need -lrt.
I think, long ago, I tried to use the monotonic clock in speed.cc, which needs -lrt. However, the current code doesn't use that and thus doesn't need -lrt. Change-Id: Ibcbf90f91ae6b852c0975dff006346125243df54 Reviewed-on: https://boringssl-review.googlesource.com/4622 Reviewed-by: David Benjamin <davidben@chromium.org> Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'tool')
-rw-r--r--tool/CMakeLists.txt6
1 files changed, 1 insertions, 5 deletions
diff --git a/tool/CMakeLists.txt b/tool/CMakeLists.txt
index 74c1ac8f..4bb6ca2f 100644
--- a/tool/CMakeLists.txt
+++ b/tool/CMakeLists.txt
@@ -15,8 +15,4 @@ add_executable(
transport_common.cc
)
-if (APPLE OR WIN32 OR ANDROID)
- target_link_libraries(bssl ssl crypto)
-else()
- target_link_libraries(bssl ssl crypto -lrt)
-endif()
+target_link_libraries(bssl ssl crypto)