[Lldb-commits] [PATCH] D61090: [SBHostOS} Remove getting the python script interpreter path
Jonas Devlieghere via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed Apr 24 13:45:13 PDT 2019
JDevlieghere created this revision.
JDevlieghere added a reviewer: davide.
JDevlieghere added a project: LLDB.
Herald added a subscriber: abidh.
This is clearly a layering violation and there's no good way to fix this. The value it adds is limited, people can use the `$PYTHONPATH` or call the corresponding Python API.
Repository:
rLLDB LLDB
https://reviews.llvm.org/D61090
Files:
lldb/source/API/SBHostOS.cpp
Index: lldb/source/API/SBHostOS.cpp
===================================================================
--- lldb/source/API/SBHostOS.cpp
+++ lldb/source/API/SBHostOS.cpp
@@ -18,9 +18,6 @@
#include "lldb/Utility/FileSpec.h"
#include "Plugins/ExpressionParser/Clang/ClangHost.h"
-#ifndef LLDB_DISABLE_PYTHON
-#include "Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h"
-#endif
#include "llvm/ADT/SmallString.h"
#include "llvm/Support/Path.h"
@@ -60,9 +57,6 @@
fspec = HostInfo::GetHeaderDir();
break;
case ePathTypePythonDir:
-#ifndef LLDB_DISABLE_PYTHON
- fspec = ScriptInterpreterPython::GetPythonDir();
-#endif
break;
case ePathTypeLLDBSystemPlugins:
fspec = HostInfo::GetSystemPluginDir();
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D61090.196513.patch
Type: text/x-patch
Size: 739 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20190424/2192f00d/attachment.bin>
More information about the lldb-commits
mailing list