[PATCH] D108533: [clang] Move the soname declaration in a variable at the top of the file
Sylvestre Ledru via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Aug 23 00:57:10 PDT 2021
sylvestre.ledru created this revision.
sylvestre.ledru added reviewers: tstellar, MaskRay.
Herald added a subscriber: mgorny.
sylvestre.ledru requested review of this revision.
Herald added a project: clang.
Herald added a subscriber: cfe-commits.
Currently, it is a bit buried in the file even if this is
pretty important for distro.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D108533
Files:
clang/tools/libclang/CMakeLists.txt
Index: clang/tools/libclang/CMakeLists.txt
===================================================================
--- clang/tools/libclang/CMakeLists.txt
+++ clang/tools/libclang/CMakeLists.txt
@@ -48,6 +48,8 @@
clangTooling
)
+SET(CLANG_SONAME 13)
+
if (CLANG_ENABLE_ARCMT)
list(APPEND LIBS clangARCMigrate)
endif ()
@@ -176,7 +178,7 @@
# LLVM_VERSION_MAJOR.
set_target_properties(libclang PROPERTIES
VERSION ${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR}.${LLVM_VERSION_PATCH}${LLVM_VERSION_SUFFIX}
- SOVERSION 13)
+ SOVERSION ${CLANG_SONAME})
endif()
endif()
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D108533.368044.patch
Type: text/x-patch
Size: 660 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20210823/50e092cb/attachment.bin>
More information about the cfe-commits
mailing list