From: Gianfranco Costamagna Date: Sat, 7 Mar 2020 00:01:35 +0000 (+0000) Subject: print-lldb-path X-Git-Tag: archive/raspbian/1%9.0.1-10+rpi1^2~3 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=89b50dc6991f19e1fe1e03a4554a1e2cb67c9c31;p=llvm-toolchain-9.git print-lldb-path Last-Update: 2020-01-21 Gbp-Pq: Name print-lldb-path.patch --- diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp b/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp index e470dfeab..cbd13730d 100644 --- a/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp +++ b/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp @@ -336,10 +336,11 @@ void ScriptInterpreterPython::ComputePythonDirForPosix( llvm::sys::path::remove_filename(path, style); llvm::sys::path::append(path, style, LLDB_PYTHON_RELATIVE_LIBDIR); #else + llvm::sys::path::remove_filename(path, style); llvm::sys::path::append(path, style, - "python" + llvm::Twine(PY_MAJOR_VERSION) + "." + - llvm::Twine(PY_MINOR_VERSION), - "site-packages"); + "python3"/* + llvm::Twine(PY_MAJOR_VERSION) + "." + + llvm::Twine(PY_MINOR_VERSION)*/, + "dist-packages"); #endif }