From: Ali Maredia Date: Fri, 22 Apr 2016 18:18:25 +0000 (-0400) Subject: cmake: removed rdmacm & ibverbs parallel to PR#8637 X-Git-Tag: v11.0.0~731^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=bd47f3371f725012313464ec2c2bc181410b7d07;p=ceph.git cmake: removed rdmacm & ibverbs parallel to PR#8637 Signed-off-by: Ali Maredia --- diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 6e823a781ed..b3946db074b 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -124,7 +124,7 @@ execute_process( if(HAVE_XIO) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -I${Xio_INCLUDE_DIR}") - list(APPEND EXTRALIBS ${Xio_LIBRARY} ibverbs rdmacm pthread rt) + list(APPEND EXTRALIBS ${Xio_LIBRARY} pthread rt) endif(HAVE_XIO) # sort out which allocator to use diff --git a/src/test/messenger/CMakeLists.txt b/src/test/messenger/CMakeLists.txt index 8cab6011007..1db5a514a5c 100644 --- a/src/test/messenger/CMakeLists.txt +++ b/src/test/messenger/CMakeLists.txt @@ -25,7 +25,7 @@ if(HAVE_XIO) ) target_link_libraries(xio_server os global common ${Boost_REGEX_LIBRARY} - ${Xio_LIBRARY} ibverbs rdmacm pthread rt + ${Xio_LIBRARY} pthread rt ${EXTRALIBS} ${CMAKE_DL_LIBS} ) @@ -36,7 +36,7 @@ if(HAVE_XIO) ) target_link_libraries(xio_client os global common ${Boost_REGEX_LIBRARY} - ${Xio_LIBRARY} ibverbs rdmacm pthread rt + ${Xio_LIBRARY} pthread rt ${EXTRALIBS} ${CMAKE_DL_LIBS} )