File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -51,6 +51,11 @@ macro(add_optional_dependency variable description package found)
51
51
message (STATUS "${description} : ${${variable} }" )
52
52
endmacro ()
53
53
54
+ set (LLDB_LIBXML2_VERSION "2.8" CACHE STRING
55
+ "Specify the version of libxml 2 to use with LLDB. This is only meant to be overridden for local
56
+ static builds of libxml 2. Use at your own risk." )
57
+ mark_as_advanced (LLDB_LIBXML2_VERSION )
58
+
54
59
add_optional_dependency (LLDB_ENABLE_SWIG "Enable SWIG to generate LLDB bindings" SWIG SWIG_FOUND VERSION 4 )
55
60
56
61
# BEGIN SWIFT MOD
@@ -67,7 +72,7 @@ add_optional_dependency(LLDB_ENABLE_CURSES "Enable curses support in LLDB" Curse
67
72
add_optional_dependency (LLDB_ENABLE_LZMA "Enable LZMA compression support in LLDB" LibLZMA LIBLZMA_FOUND )
68
73
add_optional_dependency (LLDB_ENABLE_LUA "Enable Lua scripting support in LLDB" LuaAndSwig LUAANDSWIG_FOUND )
69
74
add_optional_dependency (LLDB_ENABLE_PYTHON "Enable Python scripting support in LLDB" PythonAndSwig PYTHONANDSWIG_FOUND )
70
- add_optional_dependency (LLDB_ENABLE_LIBXML2 "Enable Libxml 2 support in LLDB" LibXml2 LIBXML2_FOUND VERSION 2.8 )
75
+ add_optional_dependency (LLDB_ENABLE_LIBXML2 "Enable Libxml 2 support in LLDB" LibXml2 LIBXML2_FOUND VERSION ${LLDB_LIBXML2_VERSION} )
71
76
add_optional_dependency (LLDB_ENABLE_FBSDVMCORE "Enable libfbsdvmcore support in LLDB" FBSDVMCore FBSDVMCore_FOUND QUIET )
72
77
73
78
option (LLDB_USE_ENTITLEMENTS "When codesigning, use entitlements if available" ON )
You can’t perform that action at this time.
0 commit comments