We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5768325 commit e6f03d1Copy full SHA for e6f03d1
clang/tools/libclang/CMakeLists.txt
@@ -3,11 +3,15 @@
3
# LLVM_VERSION_MAJOR.
4
# Please also see clang/tools/libclang/libclang.map
5
6
+# This option defaults to CLANG_FORCE_MATCHING_LIBCLANG_SOVERSION
7
+# to ON - which means that it by default matches CLANG_VERSION_MAJOR
8
+#
9
+# TODO: This should probably not be a option going forward but we
10
+# we should commit to a way to do it. But due to getting this out
11
+# in LLVM 15.x we opted for a option.
12
if(NOT CLANG_FORCE_MATCHING_LIBCLANG_SOVERSION)
- # default is to use the SOVERSION according to ABI...
13
set(LIBCLANG_SOVERSION 13)
14
else()
- # ... unless explicily overridden
15
set(LIBCLANG_SOVERSION ${CLANG_VERSION_MAJOR})
16
endif()
17
0 commit comments