From: James Page Date: Fri, 7 Jul 2017 09:09:03 +0000 (+0100) Subject: build: build erasure-code isa lib without versions X-Git-Tag: v12.1.1~112^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F16205%2Fhead;p=ceph.git build: build erasure-code isa lib without versions As erasure coding modules are loaded dynamically by Ceph, there is no need to build the backend modules with library versioning. This change brings the isa library inline with other erasure-code sub-modules. Signed-off-by: James Page --- diff --git a/src/erasure-code/isa/CMakeLists.txt b/src/erasure-code/isa/CMakeLists.txt index 6f9f97d58e05..e0a511e0a8e4 100644 --- a/src/erasure-code/isa/CMakeLists.txt +++ b/src/erasure-code/isa/CMakeLists.txt @@ -64,8 +64,6 @@ add_library(ec_isa SHARED add_dependencies(ec_isa ${CMAKE_SOURCE_DIR}/src/ceph_ver.h) target_link_libraries(ec_isa ${EXTRALIBS}) set_target_properties(ec_isa PROPERTIES - VERSION 2.18.0 - SOVERSION 2 INSTALL_RPATH "") install(TARGETS ec_isa DESTINATION ${erasure_plugin_dir})