From 6af270606e5b2d13c641bb77a70fba54b5858646 Mon Sep 17 00:00:00 2001 From: Roman Nozdrin Date: Fri, 22 Jan 2021 07:52:38 +0000 Subject: [PATCH] Removing libquadmath from the list of the libraries to link against --- utils/funcexp/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/funcexp/CMakeLists.txt b/utils/funcexp/CMakeLists.txt index 9898d440b..84aa16b70 100644 --- a/utils/funcexp/CMakeLists.txt +++ b/utils/funcexp/CMakeLists.txt @@ -115,7 +115,7 @@ add_library(funcexp SHARED ${funcexp_LIB_SRCS}) add_dependencies(funcexp loggingcpp) -target_link_libraries(funcexp ${NETSNMP_LIBRARIES} quadmath) +target_link_libraries(funcexp ${NETSNMP_LIBRARIES}) install(TARGETS funcexp DESTINATION ${ENGINE_LIBDIR} COMPONENT columnstore-engine)