[Lldb-commits] [lldb] [lldb][docs] Document Lua 5.3 as the only supported version (PR #115288)

David Spickett via lldb-commits lldb-commits at lists.llvm.org
Thu Nov 7 01:49:35 PST 2024


https://github.com/DavidSpickett created https://github.com/llvm/llvm-project/pull/115288

Technically you can manually set `LUA_LIBRARIES` and others to use a different version, and I don't see any version checks in the C++ code. However, I'm not sure that is intentional, it looks more like a side effect of how the CMake was written.

>From 99e8ea45dd2f8f56a5dbf590b02452d697168a07 Mon Sep 17 00:00:00 2001
From: David Spickett <david.spickett at linaro.org>
Date: Thu, 7 Nov 2024 09:45:57 +0000
Subject: [PATCH] [lldb][docs] Document Lua 5.3 as the only supported version

Technically you can manually set `LUA_LIBRARIES` and others
to use a different version, and I don't see any version checks
in the C++ code.

However, I'm not sure that is intentional, it looks more like a
side effect of how the CMake was written.
---
 lldb/docs/resources/build.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lldb/docs/resources/build.rst b/lldb/docs/resources/build.rst
index 33b6a6f79def4b..e64f71d0325382 100644
--- a/lldb/docs/resources/build.rst
+++ b/lldb/docs/resources/build.rst
@@ -64,7 +64,7 @@ CMake configuration error.
 +-------------------+------------------------------------------------------+--------------------------+
 | Python            | Python scripting                                     | ``LLDB_ENABLE_PYTHON``   |
 +-------------------+------------------------------------------------------+--------------------------+
-| Lua               | Lua scripting                                        | ``LLDB_ENABLE_LUA``      |
+| Lua               | Lua scripting. Only version 5.3 is supported.        | ``LLDB_ENABLE_LUA``      |
 +-------------------+------------------------------------------------------+--------------------------+
 
 Depending on your platform and package manager, one might run any of the



More information about the lldb-commits mailing list