summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Stellard <tstellar@redhat.com>2019-02-06 22:08:30 +0000
committerTom Stellard <tstellar@redhat.com>2019-02-06 22:08:30 +0000
commita469976b00b6d78284d666cbfdf302639f43b755 (patch)
treecb74fb2dbbba3970030a3ee279e5e6126f0c028b
parentea20c1e91eb82e2f3699cf71a462d9c938c7fa1e (diff)
downloadllvm-a469976b00b6d78284d666cbfdf302639f43b755.tar.gz
cmake: Use 7.1 for SONAME instead of 70
llvm-svn: 353348
-rw-r--r--llvm/cmake/modules/AddLLVM.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/cmake/modules/AddLLVM.cmake b/llvm/cmake/modules/AddLLVM.cmake
index 6a5b7fdff2e4..0f332693ed0f 100644
--- a/llvm/cmake/modules/AddLLVM.cmake
+++ b/llvm/cmake/modules/AddLLVM.cmake
@@ -501,7 +501,7 @@ function(llvm_add_library name)
# Concatenate the version numbers since ldconfig expects exactly
# one component indicating the ABI version, while LLVM uses
# major+minor for that.
- SOVERSION ${LLVM_VERSION_MAJOR}${LLVM_VERSION_MINOR}
+ SOVERSION ${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR}
VERSION ${LLVM_VERSION_MAJOR}${LLVM_VERSION_MINOR}.${LLVM_VERSION_PATCH}${LLVM_VERSION_SUFFIX})
endif()
endif()