From eb1e63b5ad9af854b3a838d040b83a31b65b8ba9 Mon Sep 17 00:00:00 2001 From: Shuduo Sang Date: Thu, 6 Feb 2020 18:46:22 +0800 Subject: [PATCH] fix build issue on Mac --- src/util/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/util/CMakeLists.txt b/src/util/CMakeLists.txt index c36e3f6e34..4202092947 100644 --- a/src/util/CMakeLists.txt +++ b/src/util/CMakeLists.txt @@ -98,6 +98,7 @@ ELSEIF(TD_DARWIN_64) LIST(APPEND SRC ./src/ttypes.c) LIST(APPEND SRC ./src/tutil.c) LIST(APPEND SRC ./src/version.c) + LIST(APPEND SRC ./src/hash.c) ADD_LIBRARY(tutil ${SRC}) TARGET_LINK_LIBRARIES(tutil iconv pthread os) ENDIF()