1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

Making the SO version major.minor instead of just major because ABI and API change between minor versions.

llvm-svn: 230981
This commit is contained in:
Chris Bieneman 2015-03-02 17:50:13 +00:00
parent b9d32f6612
commit b56a22490e

View File

@ -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()