[Lldb-commits] [PATCH] D108515: [lldb/lua] Force Lua version to be 5.3
Siger Young via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Sun Sep 26 00:33:29 PDT 2021
siger-young updated this revision to Diff 375086.
siger-young added a comment.
Remove "REQUIRED" flags when finding Lua at "FindLuaAndSwig.cmake".
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D108515/new/
https://reviews.llvm.org/D108515
Files:
lldb/cmake/modules/FindLuaAndSwig.cmake
lldb/source/Plugins/ScriptInterpreter/Lua/CMakeLists.txt
Index: lldb/source/Plugins/ScriptInterpreter/Lua/CMakeLists.txt
===================================================================
--- lldb/source/Plugins/ScriptInterpreter/Lua/CMakeLists.txt
+++ lldb/source/Plugins/ScriptInterpreter/Lua/CMakeLists.txt
@@ -1,5 +1,3 @@
-find_package(Lua REQUIRED)
-
add_lldb_library(lldbPluginScriptInterpreterLua PLUGIN
Lua.cpp
ScriptInterpreterLua.cpp
Index: lldb/cmake/modules/FindLuaAndSwig.cmake
===================================================================
--- lldb/cmake/modules/FindLuaAndSwig.cmake
+++ lldb/cmake/modules/FindLuaAndSwig.cmake
@@ -9,7 +9,7 @@
else()
find_package(SWIG 3.0)
if (SWIG_FOUND)
- find_package(Lua 5.3)
+ find_package(Lua 5.3 EXACT)
if(LUA_FOUND AND SWIG_FOUND)
mark_as_advanced(
LUA_LIBRARIES
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D108515.375086.patch
Type: text/x-patch
Size: 809 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20210926/3efbc20c/attachment.bin>
More information about the lldb-commits
mailing list