From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp57.i.mail.ru (smtp57.i.mail.ru [217.69.128.37]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id 4E5F3469710 for ; Wed, 27 May 2020 00:57:47 +0300 (MSK) From: Vladislav Shpilevoy Date: Tue, 26 May 2020 23:57:44 +0200 Message-Id: <6183280820543b8fa5f8dba7d934be5f2e97148b.1590530239.git.v.shpilevoy@tarantool.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH 1/1] build: link bit library to vclock library List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: tarantool-patches@dev.tarantool.org, tsafin@tarantool.org Vclock depends on bit library, but wasn't linked to it. --- Branch: http://github.com/tarantool/tarantool/tree/gerold103/add-missing-lib src/box/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/box/CMakeLists.txt b/src/box/CMakeLists.txt index 7dc94d893..230e7427d 100644 --- a/src/box/CMakeLists.txt +++ b/src/box/CMakeLists.txt @@ -34,7 +34,7 @@ include_directories(${ZSTD_INCLUDE_DIRS}) include_directories(${CMAKE_BINARY_DIR}/src/box/sql) add_library(vclock STATIC vclock.c) -target_link_libraries(vclock core) +target_link_libraries(vclock core bit) add_library(box_error STATIC error.cc errcode.c mp_error.cc) target_link_libraries(box_error core stat mpstream vclock) -- 2.21.1 (Apple Git-122.3)