[Lldb-commits] [PATCH] D59968: [Cmake] Unify python variables

Pavel Labath via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Thu Mar 28 23:43:52 PDT 2019


labath added inline comments.


================
Comment at: lldb/cmake/modules/LLDBConfig.cmake:246-247
   else()
-    find_package(PythonLibs REQUIRED)
+    include(FindPythonInterp)
+    include(FindPythonLibs)
   endif()
----------------
Is there any difference between `include(FindPythonInterp)` and `find_package(PythonInterp)`? It sounds like the latter should be used, because it's more specific, but I have no idea its possible to do that..


Repository:
  rLLDB LLDB

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D59968/new/

https://reviews.llvm.org/D59968





More information about the lldb-commits mailing list