forked from qt-creator/qt-creator
Debugger: Actually pass the debugger command from ToolChain.
Do not retrieve debugger command from ABI as that causes mismatches when several toolchains of the same ABI are present. Use indexes in the debugger dialogs. Polish tooltip.
This commit is contained in:
@@ -85,8 +85,10 @@ public:
|
||||
QString executableFile() const;
|
||||
QString coreFile() const;
|
||||
|
||||
int abiIndex() const;
|
||||
void setAbiIndex(int);
|
||||
ProjectExplorer::Abi abi() const;
|
||||
void setAbi(const ProjectExplorer::Abi &);
|
||||
QString debuggerCommand();
|
||||
|
||||
private slots:
|
||||
void changed();
|
||||
@@ -108,8 +110,10 @@ public:
|
||||
qint64 attachPID() const;
|
||||
QString executable() const;
|
||||
|
||||
int abiIndex() const;
|
||||
void setAbiIndex(int);
|
||||
ProjectExplorer::Abi abi() const;
|
||||
void setAbi(const ProjectExplorer::Abi &);
|
||||
QString debuggerCommand();
|
||||
|
||||
virtual void accept();
|
||||
|
||||
@@ -173,8 +177,10 @@ public:
|
||||
QString workingDirectory() const;
|
||||
void setWorkingDirectory(const QString &str);
|
||||
|
||||
int abiIndex() const;
|
||||
void setAbiIndex(int);
|
||||
ProjectExplorer::Abi abi() const;
|
||||
void setAbi(const ProjectExplorer::Abi &);
|
||||
QString debuggerCommand();
|
||||
|
||||
bool breakAtMain() const;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user