forked from qt-creator/qt-creator
Debugger: Add our lldb to the system search paths
This way the user doesn't have to manually register lldb.exe Change-Id: Id0a19de0962d8ba47a66a8d1909dfe2eb5ca0a6f Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
@@ -768,6 +768,14 @@ FilePath ICore::clazyStandaloneExecutable(const FilePath &clangBinDirectory)
|
||||
return clangBinary("clazy-standalone", clangBinDirectory);
|
||||
}
|
||||
|
||||
/*!
|
||||
\internal
|
||||
*/
|
||||
FilePath ICore::lldbExecutable(const Utils::FilePath &lldbBinDirectory)
|
||||
{
|
||||
return clangBinary("lldb", lldbBinDirectory);
|
||||
}
|
||||
|
||||
static QString compilerString()
|
||||
{
|
||||
#if defined(Q_CC_CLANG) // must be before GNU, because clang claims to be GNU too
|
||||
|
||||
@@ -148,6 +148,7 @@ public:
|
||||
static Utils::FilePath clazyStandaloneExecutable(const Utils::FilePath &clangBinDirectory);
|
||||
static Utils::FilePath clangIncludeDirectory(const QString &clangVersion,
|
||||
const Utils::FilePath &clangFallbackIncludeDir);
|
||||
static Utils::FilePath lldbExecutable(const Utils::FilePath &lldbBinDirectory);
|
||||
static QStatusBar *statusBar();
|
||||
|
||||
static void saveSettings(SaveSettingsReason reason);
|
||||
|
||||
@@ -3,6 +3,8 @@ add_qtc_plugin(Debugger
|
||||
PLUGIN_DEPENDS Core CppEditor ProjectExplorer QtSupport TextEditor
|
||||
PLUGIN_RECOMMENDS QmakeProjectManager
|
||||
PLUGIN_TEST_DEPENDS QmakeProjectManager
|
||||
DEFINES
|
||||
CLANG_BINDIR="${LLVM_TOOLS_BINARY_DIR}"
|
||||
SOURCES
|
||||
analyzer/analyzerbase.qrc
|
||||
analyzer/analyzerconstants.h
|
||||
|
||||
@@ -15,6 +15,7 @@ QtcPlugin {
|
||||
Depends { name: "ProjectExplorer" }
|
||||
Depends { name: "QtSupport" }
|
||||
Depends { name: "TextEditor" }
|
||||
Depends { name: "clang_defines" }
|
||||
|
||||
pluginRecommends: ["BinEditor"]
|
||||
pluginTestDepends: ["QmakeProjectManager"]
|
||||
|
||||
@@ -6,6 +6,8 @@
|
||||
#include "debuggerprotocol.h"
|
||||
#include "debuggertr.h"
|
||||
|
||||
#include <coreplugin/icore.h>
|
||||
|
||||
#include <projectexplorer/abi.h>
|
||||
|
||||
#include <utils/algorithm.h>
|
||||
@@ -148,8 +150,9 @@ void DebuggerItem::reinitializeFromFile(QString *error, Utils::Environment *cust
|
||||
// Prevent calling lldb on Windows because the lldb from the llvm package is linked against
|
||||
// python but does not contain a python dll.
|
||||
const bool isAndroidNdkLldb = DebuggerItem::addAndroidLldbPythonEnv(m_command, env);
|
||||
if (HostOsInfo::isWindowsHost() && m_command.fileName().startsWith("lldb")
|
||||
&& !isAndroidNdkLldb) {
|
||||
const FilePath qtcreatorLldb = Core::ICore::lldbExecutable(CLANG_BINDIR);
|
||||
if (HostOsInfo::isWindowsHost() && m_command.fileName().startsWith("lldb") && !isAndroidNdkLldb
|
||||
&& qtcreatorLldb != m_command) {
|
||||
QString errorMessage;
|
||||
m_version = winGetDLLVersion(WinDLLFileVersion,
|
||||
m_command.absoluteFilePath().path(),
|
||||
|
||||
@@ -635,9 +635,14 @@ void DebuggerItemModel::autoDetectGdbOrLldbDebuggers(const FilePaths &searchPath
|
||||
}
|
||||
|
||||
FilePaths paths = searchPaths;
|
||||
if (!searchPaths.front().needsDevice())
|
||||
if (!searchPaths.front().needsDevice()) {
|
||||
paths.append(searchGdbPathsFromRegistry());
|
||||
|
||||
const FilePath lldb = Core::ICore::lldbExecutable(CLANG_BINDIR);
|
||||
if (lldb.exists())
|
||||
suspects.append(lldb);
|
||||
}
|
||||
|
||||
paths = Utils::filteredUnique(paths);
|
||||
|
||||
const auto addSuspect = [&suspects](const FilePath &entry) {
|
||||
|
||||
Reference in New Issue
Block a user