From: Chris Bieneman Date: Mon, 2 Mar 2015 17:50:13 +0000 (+0000) Subject: Making the SO version major.minor instead of just major because ABI and API change... X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=b07ab5d54694d38c3b3edf35e9395a6dbb4e0607;ds=sidebyside Making the SO version major.minor instead of just major because ABI and API change between minor versions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230981 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/cmake/modules/AddLLVM.cmake b/cmake/modules/AddLLVM.cmake index 6c7ac067598..de542f54b3a 100644 --- a/cmake/modules/AddLLVM.cmake +++ b/cmake/modules/AddLLVM.cmake @@ -341,7 +341,7 @@ function(llvm_add_library name) set_target_properties(${name} PROPERTIES - SOVERSION ${LLVM_VERSION_MAJOR} + SOVERSION ${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR} VERSION ${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR}.${LLVM_VERSION_PATCH}${LLVM_VERSION_SUFFIX}) endif()