aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/boostbuildprojectmanager/external/projectexplorer
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/boostbuildprojectmanager/external/projectexplorer')
-rw-r--r--src/plugins/boostbuildprojectmanager/external/projectexplorer/clangparser.cpp270
-rw-r--r--src/plugins/boostbuildprojectmanager/external/projectexplorer/clangparser.h59
-rw-r--r--src/plugins/boostbuildprojectmanager/external/projectexplorer/gccparser.cpp880
-rw-r--r--src/plugins/boostbuildprojectmanager/external/projectexplorer/gccparser.h67
-rw-r--r--src/plugins/boostbuildprojectmanager/external/projectexplorer/ldparser.cpp126
-rw-r--r--src/plugins/boostbuildprojectmanager/external/projectexplorer/ldparser.h54
6 files changed, 1456 insertions, 0 deletions
diff --git a/src/plugins/boostbuildprojectmanager/external/projectexplorer/clangparser.cpp b/src/plugins/boostbuildprojectmanager/external/projectexplorer/clangparser.cpp
new file mode 100644
index 0000000000..df648bc5fd
--- /dev/null
+++ b/src/plugins/boostbuildprojectmanager/external/projectexplorer/clangparser.cpp
@@ -0,0 +1,270 @@
+/****************************************************************************
+**
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of Qt Creator.
+**
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Digia. For licensing terms and
+** conditions see http://qt.digia.com/licensing. For further information
+** use the contact form at http://qt.digia.com/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License Version 2.1 by the Free Software
+** Foundation and appearing in the file LICENSE.txt included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License Version 2.1 requirements
+** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Digia gives you certain additional
+** rights. These rights are described in the Digia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+****************************************************************************/
+
+#include "clangparser.h"
+#include "ldparser.h"
+#include <projectexplorer/projectexplorerconstants.h>
+
+using namespace ProjectExplorer;
+
+// opt. drive letter + filename: (2 brackets)
+static const char * const FILE_PATTERN = "(<command line>|([A-Za-z]:)?[^:]+\\.[^:]+)";
+
+ClangParser::ClangParser() :
+ m_commandRegExp(QLatin1String("^clang(\\+\\+)?: +(fatal +)?(warning|error|note): (.*)$")),
+ m_inLineRegExp(QLatin1String("^In (.*) included from (.*):(\\d+):$")),
+ m_messageRegExp(QLatin1String("^") + QLatin1String(FILE_PATTERN) + QLatin1String("(:(\\d+):\\d+|\\((\\d+)\\) *): +(fatal +)?(error|warning|note): (.*)$")),
+ m_summaryRegExp(QLatin1String("^\\d+ (warnings?|errors?)( and \\d (warnings?|errors?))? generated.$")),
+ m_codesignRegExp(QLatin1String("^Code ?Sign error: (.*)$")),
+ m_expectSnippet(false)
+{
+ setObjectName(QLatin1String("ClangParser"));
+
+ appendOutputParser(new LdParser);
+}
+
+void ClangParser::stdError(const QString &line)
+{
+ const QString lne = rightTrimmed(line);
+ if (m_summaryRegExp.indexIn(lne) > -1) {
+ doFlush();
+ m_expectSnippet = false;
+ return;
+ }
+
+ if (m_commandRegExp.indexIn(lne) > -1) {
+ m_expectSnippet = true;
+ Task task(Task::Error,
+ m_commandRegExp.cap(4),
+ Utils::FileName(), /* filename */
+ -1, /* line */
+ Constants::TASK_CATEGORY_COMPILE);
+ if (m_commandRegExp.cap(3) == QLatin1String("warning"))
+ task.type = Task::Warning;
+ else if (m_commandRegExp.cap(3) == QLatin1String("note"))
+ task.type = Task::Unknown;
+ newTask(task);
+ return;
+ }
+
+ if (m_inLineRegExp.indexIn(lne) > -1) {
+ m_expectSnippet = true;
+ newTask(Task(Task::Unknown,
+ lne.trimmed(),
+ Utils::FileName::fromUserInput(m_inLineRegExp.cap(2)), /* filename */
+ m_inLineRegExp.cap(3).toInt(), /* line */
+ Constants::TASK_CATEGORY_COMPILE));
+ return;
+ }
+
+ if (m_messageRegExp.indexIn(lne) > -1) {
+ m_expectSnippet = true;
+ bool ok = false;
+ int lineNo = m_messageRegExp.cap(4).toInt(&ok);
+ if (!ok)
+ lineNo = m_messageRegExp.cap(5).toInt(&ok);
+ Task task(Task::Error,
+ m_messageRegExp.cap(8),
+ Utils::FileName::fromUserInput(m_messageRegExp.cap(1)), /* filename */
+ lineNo,
+ Core::Id(Constants::TASK_CATEGORY_COMPILE));
+ if (m_messageRegExp.cap(7) == QLatin1String("warning"))
+ task.type = Task::Warning;
+ else if (m_messageRegExp.cap(7) == QLatin1String("note"))
+ task.type = Task::Unknown;
+ newTask(task);
+ return;
+ }
+
+ if (m_codesignRegExp.indexIn(lne) > -1) {
+ m_expectSnippet = true;
+ Task task(Task::Error,
+ m_codesignRegExp.cap(1),
+ Utils::FileName(),
+ -1,
+ Core::Id(Constants::TASK_CATEGORY_COMPILE));
+ newTask(task);
+ return;
+ }
+
+ if (m_expectSnippet) {
+ amendDescription(lne, true);
+ return;
+ }
+
+ IOutputParser::stdError(line);
+}
+
+// Unit tests:
+
+#ifdef WITH_TESTS_NOTDISABLED
+# include <QTest>
+
+# include "projectexplorer.h"
+# include "metatypedeclarations.h"
+# include "outputparser_test.h"
+
+void ProjectExplorerPlugin::testClangOutputParser_data()
+{
+ QTest::addColumn<QString>("input");
+ QTest::addColumn<OutputParserTester::Channel>("inputChannel");
+ QTest::addColumn<QString>("childStdOutLines");
+ QTest::addColumn<QString>("childStdErrLines");
+ QTest::addColumn<QList<ProjectExplorer::Task> >("tasks");
+ QTest::addColumn<QString>("outputLines");
+
+ const Core::Id categoryCompile = Constants::TASK_CATEGORY_COMPILE;
+
+ QTest::newRow("pass-through stdout")
+ << QString::fromLatin1("Sometext") << OutputParserTester::STDOUT
+ << QString::fromLatin1("Sometext\n") << QString()
+ << QList<ProjectExplorer::Task>()
+ << QString();
+ QTest::newRow("pass-through stderr")
+ << QString::fromLatin1("Sometext") << OutputParserTester::STDERR
+ << QString() << QString::fromLatin1("Sometext\n")
+ << QList<ProjectExplorer::Task>()
+ << QString();
+
+ QTest::newRow("clang++ warning")
+ << QString::fromLatin1("clang++: warning: argument unused during compilation: '-mthreads'")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << (QList<ProjectExplorer::Task>()
+ << Task(Task::Warning,
+ QLatin1String("argument unused during compilation: '-mthreads'"),
+ Utils::FileName(), -1,
+ categoryCompile))
+ << QString();
+ QTest::newRow("clang++ error")
+ << QString::fromLatin1("clang++: error: no input files [err_drv_no_input_files]")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << (QList<ProjectExplorer::Task>()
+ << Task(Task::Error,
+ QLatin1String("no input files [err_drv_no_input_files]"),
+ Utils::FileName(), -1,
+ categoryCompile))
+ << QString();
+ QTest::newRow("complex warning")
+ << QString::fromLatin1("In file included from ..\\..\\..\\QtSDK1.1\\Desktop\\Qt\\4.7.3\\mingw\\include/QtCore/qnamespace.h:45:\n"
+ "..\\..\\..\\QtSDK1.1\\Desktop\\Qt\\4.7.3\\mingw\\include/QtCore/qglobal.h(1425) : warning: unknown attribute 'dllimport' ignored [-Wunknown-attributes]\n"
+ "class Q_CORE_EXPORT QSysInfo {\n"
+ " ^")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << (QList<ProjectExplorer::Task>()
+ << Task(Task::Unknown,
+ QLatin1String("In file included from ..\\..\\..\\QtSDK1.1\\Desktop\\Qt\\4.7.3\\mingw\\include/QtCore/qnamespace.h:45:"),
+ Utils::FileName::fromUserInput(QLatin1String("..\\..\\..\\QtSDK1.1\\Desktop\\Qt\\4.7.3\\mingw\\include/QtCore/qnamespace.h")), 45,
+ categoryCompile)
+ << Task(Task::Warning,
+ QLatin1String("unknown attribute 'dllimport' ignored [-Wunknown-attributes]\n"
+ "class Q_CORE_EXPORT QSysInfo {\n"
+ " ^"),
+ Utils::FileName::fromUserInput(QLatin1String("..\\..\\..\\QtSDK1.1\\Desktop\\Qt\\4.7.3\\mingw\\include/QtCore/qglobal.h")), 1425,
+ categoryCompile))
+ << QString();
+ QTest::newRow("note")
+ << QString::fromLatin1("..\\..\\..\\QtSDK1.1\\Desktop\\Qt\\4.7.3\\mingw\\include/QtCore/qglobal.h:1289:27: note: instantiated from:\n"
+ "# define Q_CORE_EXPORT Q_DECL_IMPORT\n"
+ " ^")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << (QList<ProjectExplorer::Task>()
+ << Task(Task::Unknown,
+ QLatin1String("instantiated from:\n"
+ "# define Q_CORE_EXPORT Q_DECL_IMPORT\n"
+ " ^"),
+ Utils::FileName::fromUserInput(QLatin1String("..\\..\\..\\QtSDK1.1\\Desktop\\Qt\\4.7.3\\mingw\\include/QtCore/qglobal.h")), 1289,
+ categoryCompile))
+ << QString();
+ QTest::newRow("fatal error")
+ << QString::fromLatin1("/usr/include/c++/4.6/utility:68:10: fatal error: 'bits/c++config.h' file not found\n"
+ "#include <bits/c++config.h>\n"
+ " ^")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << (QList<ProjectExplorer::Task>()
+ << Task(Task::Error,
+ QLatin1String("'bits/c++config.h' file not found\n"
+ "#include <bits/c++config.h>\n"
+ " ^"),
+ Utils::FileName::fromUserInput(QLatin1String("/usr/include/c++/4.6/utility")), 68,
+ categoryCompile))
+ << QString();
+
+ QTest::newRow("line confusion")
+ << QString::fromLatin1("/home/code/src/creator/src/plugins/coreplugin/manhattanstyle.cpp:567:51: warning: ?: has lower precedence than +; + will be evaluated first [-Wparentheses]\n"
+ " int x = option->rect.x() + horizontal ? 2 : 6;\n"
+ " ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << (QList<ProjectExplorer::Task>()
+ << Task(Task::Warning,
+ QLatin1String("?: has lower precedence than +; + will be evaluated first [-Wparentheses]\n"
+ " int x = option->rect.x() + horizontal ? 2 : 6;\n"
+ " ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^"),
+ Utils::FileName::fromUserInput(QLatin1String("/home/code/src/creator/src/plugins/coreplugin/manhattanstyle.cpp")), 567,
+ categoryCompile))
+ << QString();
+ QTest::newRow("code sign error")
+ << QString::fromLatin1("Check dependencies\n"
+ "Code Sign error: No matching provisioning profiles found: No provisioning profiles with a valid signing identity (i.e. certificate and private key pair) were found.\n"
+ "CodeSign error: code signing is required for product type 'Application' in SDK 'iOS 7.0'")
+ << OutputParserTester::STDERR
+ << QString() << QString::fromLatin1("Check dependencies\n")
+ << (QList<ProjectExplorer::Task>()
+ << Task(Task::Error,
+ QLatin1String("No matching provisioning profiles found: No provisioning profiles with a valid signing identity (i.e. certificate and private key pair) were found."),
+ Utils::FileName(), -1,
+ categoryCompile)
+ << Task(Task::Error,
+ QLatin1String("code signing is required for product type 'Application' in SDK 'iOS 7.0'"),
+ Utils::FileName(), -1,
+ categoryCompile))
+ << QString();
+}
+
+void ProjectExplorerPlugin::testClangOutputParser()
+{
+ OutputParserTester testbench;
+ testbench.appendOutputParser(new ClangParser);
+ QFETCH(QString, input);
+ QFETCH(OutputParserTester::Channel, inputChannel);
+ QFETCH(QList<Task>, tasks);
+ QFETCH(QString, childStdOutLines);
+ QFETCH(QString, childStdErrLines);
+ QFETCH(QString, outputLines);
+
+ testbench.testParsing(input, inputChannel,
+ tasks, childStdOutLines, childStdErrLines,
+ outputLines);
+}
+#endif
diff --git a/src/plugins/boostbuildprojectmanager/external/projectexplorer/clangparser.h b/src/plugins/boostbuildprojectmanager/external/projectexplorer/clangparser.h
new file mode 100644
index 0000000000..4a914b7326
--- /dev/null
+++ b/src/plugins/boostbuildprojectmanager/external/projectexplorer/clangparser.h
@@ -0,0 +1,59 @@
+/****************************************************************************
+**
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of Qt Creator.
+**
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Digia. For licensing terms and
+** conditions see http://qt.digia.com/licensing. For further information
+** use the contact form at http://qt.digia.com/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 2.1 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 2.1 requirements
+** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Digia gives you certain additional
+** rights. These rights are described in the Digia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+****************************************************************************/
+
+#ifndef CLANGPARSER_H
+#define CLANGPARSER_H
+
+#include "gccparser.h"
+#include <projectexplorer/task.h>
+
+#include <QRegExp>
+
+namespace ProjectExplorer {
+
+class ClangParser : public ProjectExplorer::GccParser
+{
+ Q_OBJECT
+
+public:
+ ClangParser();
+ void stdError(const QString &line);
+
+private:
+ QRegExp m_commandRegExp;
+ QRegExp m_inLineRegExp;
+ QRegExp m_messageRegExp;
+ QRegExp m_summaryRegExp;
+ QRegExp m_codesignRegExp;
+ bool m_expectSnippet;
+};
+
+} // namespace ProjectExplorer
+
+#endif // CLANGPARSER_H
diff --git a/src/plugins/boostbuildprojectmanager/external/projectexplorer/gccparser.cpp b/src/plugins/boostbuildprojectmanager/external/projectexplorer/gccparser.cpp
new file mode 100644
index 0000000000..c6b7e02ba7
--- /dev/null
+++ b/src/plugins/boostbuildprojectmanager/external/projectexplorer/gccparser.cpp
@@ -0,0 +1,880 @@
+/****************************************************************************
+**
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of Qt Creator.
+**
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Digia. For licensing terms and
+** conditions see http://qt.digia.com/licensing. For further information
+** use the contact form at http://qt.digia.com/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License Version 2.1 by the Free Software
+** Foundation and appearing in the file LICENSE.txt included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License Version 2.1 requirements
+** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Digia gives you certain additional
+** rights. These rights are described in the Digia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+****************************************************************************/
+
+#include "gccparser.h"
+#include "ldparser.h"
+#include <projectexplorer/task.h>
+#include <projectexplorer/projectexplorerconstants.h>
+
+#include <utils/qtcassert.h>
+
+using namespace ProjectExplorer;
+
+// opt. drive letter + filename: (2 brackets)
+static const char FILE_PATTERN[] = "(<command[ -]line>|([A-Za-z]:)?[^:]+):";
+static const char COMMAND_PATTERN[] = "^(.*[\\\\/])?([a-z0-9]+-[a-z0-9]+-[a-z0-9]+-)?(gcc|g\\+\\+)(-[0-9\\.]+)?(\\.exe)?: ";
+
+GccParser::GccParser()
+{
+ setObjectName(QLatin1String("GCCParser"));
+ m_regExp.setPattern(QLatin1Char('^') + QLatin1String(FILE_PATTERN)
+ + QLatin1String("(\\d+):(\\d+:)?\\s+((fatal |#)?(warning|error|note):?\\s)?([^\\s].+)$"));
+ m_regExp.setMinimal(true);
+ QTC_CHECK(m_regExp.isValid());
+
+ m_regExpIncluded.setPattern(QString::fromLatin1("\\bfrom\\s") + QLatin1String(FILE_PATTERN)
+ + QLatin1String("(\\d+)(:\\d+)?[,:]?$"));
+ m_regExpIncluded.setMinimal(true);
+ QTC_CHECK(m_regExpIncluded.isValid());
+
+ // optional path with trailing slash
+ // optional arm-linux-none-thingy
+ // name of executable
+ // optional trailing version number
+ // optional .exe postfix
+ m_regExpGccNames.setPattern(QLatin1String(COMMAND_PATTERN));
+ m_regExpGccNames.setMinimal(true);
+ QTC_CHECK(m_regExpGccNames.isValid());
+
+ appendOutputParser(new LdParser);
+}
+
+void GccParser::stdError(const QString &line)
+{
+ QString lne = rightTrimmed(line);
+
+ // Blacklist some lines to not handle them:
+ if (lne.startsWith(QLatin1String("TeamBuilder ")) ||
+ lne.startsWith(QLatin1String("distcc["))) {
+ IOutputParser::stdError(line);
+ return;
+ }
+
+ // Handle misc issues:
+ if (lne.startsWith(QLatin1String("ERROR:")) ||
+ lne == QLatin1String("* cpp failed")) {
+ newTask(Task(Task::Error,
+ lne /* description */,
+ Utils::FileName() /* filename */,
+ -1 /* linenumber */,
+ Constants::TASK_CATEGORY_COMPILE));
+ return;
+ } else if (m_regExpGccNames.indexIn(lne) > -1) {
+ QString description = lne.mid(m_regExpGccNames.matchedLength());
+ Task task(Task::Error,
+ description,
+ Utils::FileName(), /* filename */
+ -1, /* line */
+ Constants::TASK_CATEGORY_COMPILE);
+ if (description.startsWith(QLatin1String("warning: "))) {
+ task.type = Task::Warning;
+ task.description = description.mid(9);
+ } else if (description.startsWith(QLatin1String("fatal: "))) {
+ task.description = description.mid(7);
+ }
+ newTask(task);
+ return;
+ } else if (m_regExp.indexIn(lne) > -1) {
+ Utils::FileName filename = Utils::FileName::fromUserInput(m_regExp.cap(1));
+ int lineno = m_regExp.cap(3).toInt();
+ Task task(Task::Unknown,
+ m_regExp.cap(8) /* description */,
+ filename, lineno,
+ Constants::TASK_CATEGORY_COMPILE);
+ if (m_regExp.cap(7) == QLatin1String("warning"))
+ task.type = Task::Warning;
+ else if (m_regExp.cap(7) == QLatin1String("error") ||
+ task.description.startsWith(QLatin1String("undefined reference to")) ||
+ task.description.startsWith(QLatin1String("multiple definition of")))
+ task.type = Task::Error;
+
+ // Prepend "#warning" or "#error" if that triggered the match on (warning|error)
+ // We want those to show how the warning was triggered
+ if (m_regExp.cap(5).startsWith(QLatin1Char('#')))
+ task.description = m_regExp.cap(5) + task.description;
+
+ newTask(task);
+ return;
+ } else if (m_regExpIncluded.indexIn(lne) > -1) {
+ newTask(Task(Task::Unknown,
+ lne.trimmed() /* description */,
+ Utils::FileName::fromUserInput(m_regExpIncluded.cap(1)) /* filename */,
+ m_regExpIncluded.cap(3).toInt() /* linenumber */,
+ Constants::TASK_CATEGORY_COMPILE));
+ return;
+ } else if (lne.startsWith(QLatin1Char(' '))) {
+ amendDescription(lne, true);
+ return;
+ }
+
+ doFlush();
+ IOutputParser::stdError(line);
+}
+
+void GccParser::stdOutput(const QString &line)
+{
+ doFlush();
+ IOutputParser::stdOutput(line);
+}
+
+void GccParser::newTask(const Task &task)
+{
+ doFlush();
+ m_currentTask = task;
+}
+
+void GccParser::doFlush()
+{
+ if (m_currentTask.isNull())
+ return;
+ Task t = m_currentTask;
+ m_currentTask.clear();
+ emit addTask(t);
+}
+
+void GccParser::amendDescription(const QString &desc, bool monospaced)
+{
+ if (m_currentTask.isNull())
+ return;
+ int start = m_currentTask.description.count() + 1;
+ m_currentTask.description.append(QLatin1Char('\n'));
+ m_currentTask.description.append(desc);
+ if (monospaced) {
+ QTextLayout::FormatRange fr;
+ fr.start = start;
+ fr.length = desc.count() + 1;
+ fr.format.setFontFamily(QLatin1String("Monospaced"));
+ fr.format.setFontStyleHint(QFont::TypeWriter);
+ m_currentTask.formats.append(fr);
+ }
+ return;
+}
+
+// Unit tests:
+
+#ifdef WITH_TESTS_NOTDISABLED
+# include <QTest>
+
+# include "projectexplorer.h"
+# include "metatypedeclarations.h"
+# include "outputparser_test.h"
+
+void ProjectExplorerPlugin::testGccOutputParsers_data()
+{
+ QTest::addColumn<QString>("input");
+ QTest::addColumn<OutputParserTester::Channel>("inputChannel");
+ QTest::addColumn<QString>("childStdOutLines");
+ QTest::addColumn<QString>("childStdErrLines");
+ QTest::addColumn<QList<ProjectExplorer::Task> >("tasks");
+ QTest::addColumn<QString>("outputLines");
+
+ const Core::Id categoryCompile = Constants::TASK_CATEGORY_COMPILE;
+
+ QTest::newRow("pass-through stdout")
+ << QString::fromLatin1("Sometext") << OutputParserTester::STDOUT
+ << QString::fromLatin1("Sometext\n") << QString()
+ << QList<ProjectExplorer::Task>()
+ << QString();
+ QTest::newRow("pass-through stderr")
+ << QString::fromLatin1("Sometext") << OutputParserTester::STDERR
+ << QString() << QString::fromLatin1("Sometext\n")
+ << QList<ProjectExplorer::Task>()
+ << QString();
+
+ QTest::newRow("ar output")
+ << QString::fromLatin1("../../../../x86/i686-unknown-linux-gnu/bin/i686-unknown-linux-gnu-ar: creating lib/libSkyView.a") << OutputParserTester::STDERR
+ << QString() << QString::fromLatin1("../../../../x86/i686-unknown-linux-gnu/bin/i686-unknown-linux-gnu-ar: creating lib/libSkyView.a\n")
+ << QList<ProjectExplorer::Task>()
+ << QString();
+
+ QTest::newRow("GCCE error")
+ << QString::fromLatin1("/temp/test/untitled8/main.cpp: In function `int main(int, char**)':\n"
+ "/temp/test/untitled8/main.cpp:9: error: `sfasdf' undeclared (first use this function)\n"
+ "/temp/test/untitled8/main.cpp:9: error: (Each undeclared identifier is reported only once for each function it appears in.)")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << (QList<ProjectExplorer::Task>()
+ << Task(Task::Unknown,
+ QLatin1String("In function `int main(int, char**)':"),
+ Utils::FileName::fromUserInput(QLatin1String("/temp/test/untitled8/main.cpp")), -1,
+ categoryCompile)
+ << Task(Task::Error,
+ QLatin1String("`sfasdf' undeclared (first use this function)"),
+ Utils::FileName::fromUserInput(QLatin1String("/temp/test/untitled8/main.cpp")), 9,
+ categoryCompile)
+ << Task(Task::Error,
+ QLatin1String("(Each undeclared identifier is reported only once for each function it appears in.)"),
+ Utils::FileName::fromUserInput(QLatin1String("/temp/test/untitled8/main.cpp")), 9,
+ categoryCompile)
+ )
+ << QString();
+ QTest::newRow("GCCE warning")
+ << QString::fromLatin1("/src/corelib/global/qglobal.h:1635: warning: inline function `QDebug qDebug()' used but never defined")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << (QList<ProjectExplorer::Task>()
+ << Task(Task::Warning,
+ QLatin1String("inline function `QDebug qDebug()' used but never defined"),
+ Utils::FileName::fromUserInput(QLatin1String("/src/corelib/global/qglobal.h")), 1635,
+ categoryCompile))
+ << QString();
+ QTest::newRow("warning")
+ << QString::fromLatin1("main.cpp:7:2: warning: Some warning")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << (QList<ProjectExplorer::Task>() << Task(Task::Warning,
+ QLatin1String("Some warning"),
+ Utils::FileName::fromUserInput(QLatin1String("main.cpp")), 7,
+ categoryCompile))
+ << QString();
+ QTest::newRow("GCCE #error")
+ << QString::fromLatin1("C:\\temp\\test\\untitled8\\main.cpp:7: #error Symbian error")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << (QList<ProjectExplorer::Task>()
+ << Task(Task::Error,
+ QLatin1String("#error Symbian error"),
+ Utils::FileName::fromUserInput(QLatin1String("C:\\temp\\test\\untitled8\\main.cpp")), 7,
+ categoryCompile))
+ << QString();
+ // Symbian reports #warning(s) twice (using different syntax).
+ QTest::newRow("GCCE #warning1")
+ << QString::fromLatin1("C:\\temp\\test\\untitled8\\main.cpp:8: warning: #warning Symbian warning")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << (QList<ProjectExplorer::Task>()
+ << Task(Task::Warning,
+ QLatin1String("#warning Symbian warning"),
+ Utils::FileName::fromUserInput(QLatin1String("C:\\temp\\test\\untitled8\\main.cpp")), 8,
+ categoryCompile))
+ << QString();
+ QTest::newRow("GCCE #warning2")
+ << QString::fromLatin1("/temp/test/untitled8/main.cpp:8:2: warning: #warning Symbian warning")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << (QList<ProjectExplorer::Task>()
+ << Task(Task::Warning,
+ QLatin1String("#warning Symbian warning"),
+ Utils::FileName::fromUserInput(QLatin1String("/temp/test/untitled8/main.cpp")), 8,
+ categoryCompile))
+ << QString();
+ QTest::newRow("Undefined reference (debug)")
+ << QString::fromLatin1("main.o: In function `main':\n"
+ "C:\\temp\\test\\untitled8/main.cpp:8: undefined reference to `MainWindow::doSomething()'\n"
+ "collect2: ld returned 1 exit status")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << (QList<ProjectExplorer::Task>()
+ << Task(Task::Unknown,
+ QLatin1String("In function `main':"),
+ Utils::FileName::fromUserInput(QLatin1String("main.o")), -1,
+ categoryCompile)
+ << Task(Task::Error,
+ QLatin1String("undefined reference to `MainWindow::doSomething()'"),
+ Utils::FileName::fromUserInput(QLatin1String("C:\\temp\\test\\untitled8/main.cpp")), 8,
+ categoryCompile)
+ << Task(Task::Error,
+ QLatin1String("collect2: ld returned 1 exit status"),
+ Utils::FileName(), -1,
+ categoryCompile)
+ )
+ << QString();
+ QTest::newRow("Undefined reference (release)")
+ << QString::fromLatin1("main.o: In function `main':\n"
+ "C:\\temp\\test\\untitled8/main.cpp:(.text+0x40): undefined reference to `MainWindow::doSomething()'\n"
+ "collect2: ld returned 1 exit status")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << (QList<ProjectExplorer::Task>()
+ << Task(Task::Unknown,
+ QLatin1String("In function `main':"),
+ Utils::FileName::fromUserInput(QLatin1String("main.o")), -1,
+ categoryCompile)
+ << Task(Task::Error,
+ QLatin1String("undefined reference to `MainWindow::doSomething()'"),
+ Utils::FileName::fromUserInput(QLatin1String("C:\\temp\\test\\untitled8/main.cpp")), -1,
+ categoryCompile)
+ << Task(Task::Error,
+ QLatin1String("collect2: ld returned 1 exit status"),
+ Utils::FileName(), -1,
+ categoryCompile)
+ )
+ << QString();
+ QTest::newRow("linker: dll format not recognized")
+ << QString::fromLatin1("c:\\Qt\\4.6\\lib/QtGuid4.dll: file not recognized: File format not recognized")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << (QList<ProjectExplorer::Task>()
+ << Task(Task::Error,
+ QLatin1String("file not recognized: File format not recognized"),
+ Utils::FileName::fromUserInput(QLatin1String("c:\\Qt\\4.6\\lib/QtGuid4.dll")), -1,
+ categoryCompile))
+ << QString();
+ QTest::newRow("Invalid rpath")
+ << QString::fromLatin1("g++: /usr/local/lib: No such file or directory")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << (QList<ProjectExplorer::Task>()
+ << Task(Task::Error,
+ QLatin1String("/usr/local/lib: No such file or directory"),
+ Utils::FileName(), -1,
+ categoryCompile))
+ << QString();
+
+ QTest::newRow("Invalid rpath")
+ << QString::fromLatin1("../../../../master/src/plugins/debugger/gdb/gdbengine.cpp: In member function 'void Debugger::Internal::GdbEngine::handleBreakInsert2(const Debugger::Internal::GdbResponse&)':\n"
+ "../../../../master/src/plugins/debugger/gdb/gdbengine.cpp:2114: warning: unused variable 'index'\n"
+ "../../../../master/src/plugins/debugger/gdb/gdbengine.cpp:2115: warning: unused variable 'handler'")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << (QList<ProjectExplorer::Task>()
+ << Task(Task::Unknown,
+ QLatin1String("In member function 'void Debugger::Internal::GdbEngine::handleBreakInsert2(const Debugger::Internal::GdbResponse&)':"),
+ Utils::FileName::fromUserInput(QLatin1String("../../../../master/src/plugins/debugger/gdb/gdbengine.cpp")), -1,
+ categoryCompile)
+ << Task(Task::Warning,
+ QLatin1String("unused variable 'index'"),
+ Utils::FileName::fromUserInput(QLatin1String("../../../../master/src/plugins/debugger/gdb/gdbengine.cpp")), 2114,
+ categoryCompile)
+ << Task(Task::Warning,
+ QLatin1String("unused variable 'handler'"),
+ Utils::FileName::fromUserInput(QLatin1String("../../../../master/src/plugins/debugger/gdb/gdbengine.cpp")), 2115,
+ categoryCompile))
+ << QString();
+ QTest::newRow("gnumakeparser.cpp errors")
+ << QString::fromLatin1("/home/code/src/creator/src/plugins/projectexplorer/gnumakeparser.cpp: In member function 'void ProjectExplorer::ProjectExplorerPlugin::testGnuMakeParserTaskMangling_data()':\n"
+ "/home/code/src/creator/src/plugins/projectexplorer/gnumakeparser.cpp:264: error: expected primary-expression before ':' token\n"
+ "/home/code/src/creator/src/plugins/projectexplorer/gnumakeparser.cpp:264: error: expected ';' before ':' token")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << (QList<ProjectExplorer::Task>()
+ << Task(Task::Unknown,
+ QLatin1String("In member function 'void ProjectExplorer::ProjectExplorerPlugin::testGnuMakeParserTaskMangling_data()':"),
+ Utils::FileName::fromUserInput(QLatin1String("/home/code/src/creator/src/plugins/projectexplorer/gnumakeparser.cpp")), -1,
+ categoryCompile)
+ << Task(Task::Error,
+ QLatin1String("expected primary-expression before ':' token"),
+ Utils::FileName::fromUserInput(QLatin1String("/home/code/src/creator/src/plugins/projectexplorer/gnumakeparser.cpp")), 264,
+ categoryCompile)
+ << Task(Task::Error,
+ QLatin1String("expected ';' before ':' token"),
+ Utils::FileName::fromUserInput(QLatin1String("/home/code/src/creator/src/plugins/projectexplorer/gnumakeparser.cpp")), 264,
+ categoryCompile))
+ << QString();
+ QTest::newRow("distcc error(QTCREATORBUG-904)")
+ << QString::fromLatin1("distcc[73168] (dcc_get_hostlist) Warning: no hostlist is set; can't distribute work\n"
+ "distcc[73168] (dcc_build_somewhere) Warning: failed to distribute, running locally instead")
+ << OutputParserTester::STDERR
+ << QString() << QString::fromLatin1("distcc[73168] (dcc_get_hostlist) Warning: no hostlist is set; can't distribute work\n"
+ "distcc[73168] (dcc_build_somewhere) Warning: failed to distribute, running locally instead\n")
+ << QList<ProjectExplorer::Task>()
+ << QString();
+ QTest::newRow("ld warning (QTCREATORBUG-905)")
+ << QString::fromLatin1("ld: warning: Core::IEditor* QVariant::value<Core::IEditor*>() const has different visibility (hidden) in .obj/debug-shared/openeditorsview.o and (default) in .obj/debug-shared/editormanager.o")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << ( QList<ProjectExplorer::Task>()
+ << Task(Task::Warning,
+ QLatin1String("Core::IEditor* QVariant::value<Core::IEditor*>() const has different visibility (hidden) in .obj/debug-shared/openeditorsview.o and (default) in .obj/debug-shared/editormanager.o"),
+ Utils::FileName(), -1,
+ categoryCompile))
+ << QString();
+ QTest::newRow("ld fatal")
+ << QString::fromLatin1("ld: fatal: Symbol referencing errors. No output written to testproject")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << ( QList<ProjectExplorer::Task>()
+ << Task(Task::Error,
+ QLatin1String("Symbol referencing errors. No output written to testproject"),
+ Utils::FileName(), -1,
+ categoryCompile))
+ << QString();
+ QTest::newRow("Teambuilder issues")
+ << QString::fromLatin1("TeamBuilder Client:: error: could not find Scheduler, running Job locally...")
+ << OutputParserTester::STDERR
+ << QString() << QString::fromLatin1("TeamBuilder Client:: error: could not find Scheduler, running Job locally...\n")
+ << QList<ProjectExplorer::Task>()
+ << QString();
+ QTest::newRow("note")
+ << QString::fromLatin1("/home/dev/creator/share/qtcreator/debugger/dumper.cpp:1079: note: initialized from here")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << ( QList<ProjectExplorer::Task>()
+ << Task(Task::Unknown,
+ QLatin1String("initialized from here"),
+ Utils::FileName::fromUserInput(QLatin1String("/home/dev/creator/share/qtcreator/debugger/dumper.cpp")), 1079,
+ categoryCompile))
+ << QString();
+ QTest::newRow("static member function")
+ << QString::fromLatin1("/Qt/4.6.2-Symbian/s60sdk/epoc32/include/stdapis/stlport/stl/_tree.c: In static member function 'static std::_Rb_tree_node_base* std::_Rb_global<_Dummy>::_Rebalance_for_erase(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*&, std::_Rb_tree_node_base*&, std::_Rb_tree_node_base*&)':\n"
+ "/Qt/4.6.2-Symbian/s60sdk/epoc32/include/stdapis/stlport/stl/_tree.c:194: warning: suggest explicit braces to avoid ambiguous 'else'")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << ( QList<ProjectExplorer::Task>()
+ << Task(Task::Unknown,
+ QLatin1String("In static member function 'static std::_Rb_tree_node_base* std::_Rb_global<_Dummy>::_Rebalance_for_erase(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*&, std::_Rb_tree_node_base*&, std::_Rb_tree_node_base*&)':"),
+ Utils::FileName::fromUserInput(QLatin1String("/Qt/4.6.2-Symbian/s60sdk/epoc32/include/stdapis/stlport/stl/_tree.c")), -1,
+ categoryCompile)
+ << Task(Task::Warning,
+ QLatin1String("suggest explicit braces to avoid ambiguous 'else'"),
+ Utils::FileName::fromUserInput(QLatin1String("/Qt/4.6.2-Symbian/s60sdk/epoc32/include/stdapis/stlport/stl/_tree.c")), 194,
+ categoryCompile))
+ << QString();
+ QTest::newRow("rm false positive")
+ << QString::fromLatin1("rm: cannot remove `release/moc_mainwindow.cpp': No such file or directory")
+ << OutputParserTester::STDERR
+ << QString() << QString(QLatin1String("rm: cannot remove `release/moc_mainwindow.cpp': No such file or directory\n"))
+ << QList<ProjectExplorer::Task>()
+ << QString();
+ QTest::newRow("ranlib false positive")
+ << QString::fromLatin1("ranlib: file: libSupport.a(HashTable.o) has no symbols")
+ << OutputParserTester::STDERR
+ << QString() << QString(QLatin1String("ranlib: file: libSupport.a(HashTable.o) has no symbols\n"))
+ << QList<ProjectExplorer::Task>()
+ << QString();
+ QTest::newRow("ld: missing library")
+ << QString::fromLatin1("/usr/bin/ld: cannot find -ldoesnotexist")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << ( QList<ProjectExplorer::Task>()
+ << Task(Task::Error,
+ QLatin1String("cannot find -ldoesnotexist"),
+ Utils::FileName(), -1,
+ categoryCompile))
+ << QString();
+ QTest::newRow("In function")
+ << QString::fromLatin1("../../scriptbug/main.cpp: In function void foo(i) [with i = double]:\n"
+ "../../scriptbug/main.cpp:22: instantiated from here\n"
+ "../../scriptbug/main.cpp:8: warning: unused variable c")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << ( QList<ProjectExplorer::Task>()
+ << Task(Task::Unknown,
+ QLatin1String("In function void foo(i) [with i = double]:"),
+ Utils::FileName::fromUserInput(QLatin1String("../../scriptbug/main.cpp")), -1,
+ categoryCompile)
+ << Task(Task::Unknown,
+ QLatin1String("instantiated from here"),
+ Utils::FileName::fromUserInput(QLatin1String("../../scriptbug/main.cpp")), 22,
+ categoryCompile)
+ << Task(Task::Warning,
+ QLatin1String("unused variable c"),
+ Utils::FileName::fromUserInput(QLatin1String("../../scriptbug/main.cpp")), 8,
+ categoryCompile))
+ << QString();
+ QTest::newRow("instanciated from here")
+ << QString::fromLatin1("main.cpp:10: instantiated from here ")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << ( QList<ProjectExplorer::Task>()
+ << Task(Task::Unknown,
+ QLatin1String("instantiated from here"),
+ Utils::FileName::fromUserInput(QLatin1String("main.cpp")), 10,
+ categoryCompile))
+ << QString();
+ QTest::newRow("In constructor")
+ << QString::fromLatin1("/dev/creator/src/plugins/find/basetextfind.h: In constructor 'Find::BaseTextFind::BaseTextFind(QTextEdit*)':")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << ( QList<ProjectExplorer::Task>()
+ << Task(Task::Unknown,
+ QLatin1String("In constructor 'Find::BaseTextFind::BaseTextFind(QTextEdit*)':"),
+ Utils::FileName::fromUserInput(QLatin1String("/dev/creator/src/plugins/find/basetextfind.h")), -1,
+ categoryCompile))
+ << QString();
+
+ QTest::newRow("At global scope")
+ << QString::fromLatin1("../../scriptbug/main.cpp: At global scope:\n"
+ "../../scriptbug/main.cpp: In instantiation of void bar(i) [with i = double]:\n"
+ "../../scriptbug/main.cpp:8: instantiated from void foo(i) [with i = double]\n"
+ "../../scriptbug/main.cpp:22: instantiated from here\n"
+ "../../scriptbug/main.cpp:5: warning: unused parameter v")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << ( QList<ProjectExplorer::Task>()
+ << Task(Task::Unknown,
+ QLatin1String("At global scope:"),
+ Utils::FileName::fromUserInput(QLatin1String("../../scriptbug/main.cpp")), -1,
+ categoryCompile)
+ << Task(Task::Unknown,
+ QLatin1String("In instantiation of void bar(i) [with i = double]:"),
+ Utils::FileName::fromUserInput(QLatin1String("../../scriptbug/main.cpp")), -1,
+ categoryCompile)
+ << Task(Task::Unknown,
+ QLatin1String("instantiated from void foo(i) [with i = double]"),
+ Utils::FileName::fromUserInput(QLatin1String("../../scriptbug/main.cpp")), 8,
+ categoryCompile)
+ << Task(Task::Unknown,
+ QLatin1String("instantiated from here"),
+ Utils::FileName::fromUserInput(QLatin1String("../../scriptbug/main.cpp")), 22,
+ categoryCompile)
+ << Task(Task::Warning,
+ QLatin1String("unused parameter v"),
+ Utils::FileName::fromUserInput(QLatin1String("../../scriptbug/main.cpp")), 5,
+ categoryCompile))
+ << QString();
+
+ QTest::newRow("gcc 4.5 fatal error")
+ << QString::fromLatin1("/home/code/test.cpp:54:38: fatal error: test.moc: No such file or directory")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << ( QList<ProjectExplorer::Task>()
+ << Task(Task::Error,
+ QLatin1String("test.moc: No such file or directory"),
+ Utils::FileName::fromUserInput(QLatin1String("/home/code/test.cpp")), 54,
+ categoryCompile))
+ << QString();
+
+ QTest::newRow("QTCREATORBUG-597")
+ << QString::fromLatin1("debug/qplotaxis.o: In function `QPlotAxis':\n"
+ "M:\\Development\\x64\\QtPlot/qplotaxis.cpp:26: undefined reference to `vtable for QPlotAxis'\n"
+ "M:\\Development\\x64\\QtPlot/qplotaxis.cpp:26: undefined reference to `vtable for QPlotAxis'\n"
+ "collect2: ld returned 1 exit status")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << ( QList<ProjectExplorer::Task>()
+ << Task(Task::Unknown,
+ QLatin1String("In function `QPlotAxis':"),
+ Utils::FileName::fromUserInput(QLatin1String("debug/qplotaxis.o")), -1,
+ categoryCompile)
+ << Task(Task::Error,
+ QLatin1String("undefined reference to `vtable for QPlotAxis'"),
+ Utils::FileName::fromUserInput(QLatin1String("M:\\Development\\x64\\QtPlot/qplotaxis.cpp")), 26,
+ categoryCompile)
+ << Task(Task::Error,
+ QLatin1String("undefined reference to `vtable for QPlotAxis'"),
+ Utils::FileName::fromUserInput(QLatin1String("M:\\Development\\x64\\QtPlot/qplotaxis.cpp")), 26,
+ categoryCompile)
+ << Task(Task::Error,
+ QLatin1String("collect2: ld returned 1 exit status"),
+ Utils::FileName(), -1,
+ categoryCompile))
+ << QString();
+
+ QTest::newRow("instantiated from here should not be an error")
+ << QString::fromLatin1("../stl/main.cpp: In member function typename _Vector_base<_Tp, _Alloc>::_Tp_alloc_type::const_reference Vector<_Tp, _Alloc>::at(int) [with _Tp = Point, _Alloc = Allocator<Point>]:\n"
+ "../stl/main.cpp:38: instantiated from here\n"
+ "../stl/main.cpp:31: warning: returning reference to temporary\n"
+ "../stl/main.cpp: At global scope:\n"
+ "../stl/main.cpp:31: warning: unused parameter index")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << ( QList<ProjectExplorer::Task>()
+ << Task(Task::Unknown,
+ QLatin1String("In member function typename _Vector_base<_Tp, _Alloc>::_Tp_alloc_type::const_reference Vector<_Tp, _Alloc>::at(int) [with _Tp = Point, _Alloc = Allocator<Point>]:"),
+ Utils::FileName::fromUserInput(QLatin1String("../stl/main.cpp")), -1,
+ categoryCompile)
+ << Task(Task::Unknown,
+ QLatin1String("instantiated from here"),
+ Utils::FileName::fromUserInput(QLatin1String("../stl/main.cpp")), 38,
+ categoryCompile)
+ << Task(Task::Warning,
+ QLatin1String("returning reference to temporary"),
+ Utils::FileName::fromUserInput(QLatin1String("../stl/main.cpp")), 31,
+ categoryCompile)
+ << Task(Task::Unknown,
+ QLatin1String("At global scope:"),
+ Utils::FileName::fromUserInput(QLatin1String("../stl/main.cpp")), -1,
+ categoryCompile)
+ << Task(Task::Warning,
+ QLatin1String("unused parameter index"),
+ Utils::FileName::fromUserInput(QLatin1String("../stl/main.cpp")), 31,
+ categoryCompile))
+ << QString();
+
+ QTest::newRow("GCCE from lines")
+ << QString::fromLatin1("In file included from C:/Symbian_SDK/epoc32/include/e32cmn.h:6792,\n"
+ " from C:/Symbian_SDK/epoc32/include/e32std.h:25,\n"
+ "C:/Symbian_SDK/epoc32/include/e32cmn.inl: In member function 'SSecureId::operator const TSecureId&() const':\n"
+ "C:/Symbian_SDK/epoc32/include/e32cmn.inl:7094: warning: returning reference to temporary")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << ( QList<ProjectExplorer::Task>()
+ << Task(Task::Unknown,
+ QLatin1String("In file included from C:/Symbian_SDK/epoc32/include/e32cmn.h:6792,"),
+ Utils::FileName::fromUserInput(QLatin1String("C:/Symbian_SDK/epoc32/include/e32cmn.h")), 6792,
+ categoryCompile)
+ << Task(Task::Unknown,
+ QLatin1String("from C:/Symbian_SDK/epoc32/include/e32std.h:25,"),
+ Utils::FileName::fromUserInput(QLatin1String("C:/Symbian_SDK/epoc32/include/e32std.h")), 25,
+ categoryCompile)
+ << Task(Task::Unknown,
+ QLatin1String("In member function 'SSecureId::operator const TSecureId&() const':"),
+ Utils::FileName::fromUserInput(QLatin1String("C:/Symbian_SDK/epoc32/include/e32cmn.inl")), -1,
+ categoryCompile)
+ << Task(Task::Warning,
+ QLatin1String("returning reference to temporary"),
+ Utils::FileName::fromUserInput(QLatin1String("C:/Symbian_SDK/epoc32/include/e32cmn.inl")), 7094,
+ categoryCompile))
+ << QString();
+
+ QTest::newRow("QTCREATORBUG-2206")
+ << QString::fromLatin1("../../../src/XmlUg/targetdelete.c: At top level:")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << ( QList<ProjectExplorer::Task>()
+ << Task(Task::Unknown,
+ QLatin1String("At top level:"),
+ Utils::FileName::fromUserInput(QLatin1String("../../../src/XmlUg/targetdelete.c")), -1,
+ categoryCompile))
+ << QString();
+
+ QTest::newRow("GCCE 4: commandline, includes")
+ << QString::fromLatin1("In file included from /Symbian/SDK/EPOC32/INCLUDE/GCCE/GCCE.h:15,\n"
+ " from <command line>:26:\n"
+ "/Symbian/SDK/epoc32/include/variant/Symbian_OS.hrh:1134:26: warning: no newline at end of file")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << ( QList<ProjectExplorer::Task>()
+ << Task(Task::Unknown,
+ QLatin1String("In file included from /Symbian/SDK/EPOC32/INCLUDE/GCCE/GCCE.h:15,"),
+ Utils::FileName::fromUserInput(QLatin1String("/Symbian/SDK/EPOC32/INCLUDE/GCCE/GCCE.h")), 15,
+ categoryCompile)
+ << Task(Task::Unknown,
+ QLatin1String("from <command line>:26:"),
+ Utils::FileName::fromUserInput(QLatin1String("<command line>")), 26,
+ categoryCompile)
+ << Task(Task::Warning,
+ QLatin1String("no newline at end of file"),
+ Utils::FileName::fromUserInput(QLatin1String("/Symbian/SDK/epoc32/include/variant/Symbian_OS.hrh")), 1134,
+ categoryCompile))
+ << QString();
+
+ QTest::newRow("Linker fail (release build)")
+ << QString::fromLatin1("release/main.o:main.cpp:(.text+0x42): undefined reference to `MainWindow::doSomething()'")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << ( QList<ProjectExplorer::Task>()
+ << Task(Task::Error,
+ QLatin1String("undefined reference to `MainWindow::doSomething()'"),
+ Utils::FileName::fromUserInput(QLatin1String("main.cpp")), -1,
+ categoryCompile))
+ << QString();
+
+ QTest::newRow("enumeration warning")
+ << QString::fromLatin1("../../../src/shared/proparser/profileevaluator.cpp: In member function 'ProFileEvaluator::Private::VisitReturn ProFileEvaluator::Private::evaluateConditionalFunction(const ProString&, const ProStringList&)':\n"
+ "../../../src/shared/proparser/profileevaluator.cpp:2817:9: warning: case value '0' not in enumerated type 'ProFileEvaluator::Private::TestFunc'")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << ( QList<ProjectExplorer::Task>()
+ << Task(Task::Unknown,
+ QLatin1String("In member function 'ProFileEvaluator::Private::VisitReturn ProFileEvaluator::Private::evaluateConditionalFunction(const ProString&, const ProStringList&)':"),
+ Utils::FileName::fromUserInput(QLatin1String("../../../src/shared/proparser/profileevaluator.cpp")), -1,
+ categoryCompile)
+ << Task(Task::Warning,
+ QLatin1String("case value '0' not in enumerated type 'ProFileEvaluator::Private::TestFunc'"),
+ Utils::FileName::fromUserInput(QLatin1String("../../../src/shared/proparser/profileevaluator.cpp")), 2817,
+ categoryCompile))
+ << QString();
+
+ QTest::newRow("include with line:column info")
+ << QString::fromLatin1("In file included from <command-line>:0:0:\n"
+ "./mw.h:4:0: warning: \"STUPID_DEFINE\" redefined")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << ( QList<ProjectExplorer::Task>()
+ << Task(Task::Unknown,
+ QLatin1String("In file included from <command-line>:0:0:"),
+ Utils::FileName::fromUserInput(QLatin1String("<command-line>")), 0,
+ categoryCompile)
+ << Task(Task::Warning,
+ QLatin1String("\"STUPID_DEFINE\" redefined"),
+ Utils::FileName::fromUserInput(QLatin1String("./mw.h")), 4,
+ categoryCompile))
+ << QString();
+ QTest::newRow("instanciation with line:column info")
+ << QString::fromLatin1("file.h: In function 'void UnitTest::CheckEqual(UnitTest::TestResults&, const Expected&, const Actual&, const UnitTest::TestDetails&) [with Expected = unsigned int, Actual = int]':\n"
+ "file.cpp:87:10: instantiated from here\n"
+ "file.h:21:5: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << ( QList<ProjectExplorer::Task>()
+ << Task(Task::Unknown,
+ QLatin1String("In function 'void UnitTest::CheckEqual(UnitTest::TestResults&, const Expected&, const Actual&, const UnitTest::TestDetails&) [with Expected = unsigned int, Actual = int]':"),
+ Utils::FileName::fromUserInput(QLatin1String("file.h")), -1,
+ categoryCompile)
+ << Task(Task::Unknown,
+ QLatin1String("instantiated from here"),
+ Utils::FileName::fromUserInput(QLatin1String("file.cpp")), 87,
+ categoryCompile)
+ << Task(Task::Warning,
+ QLatin1String("comparison between signed and unsigned integer expressions [-Wsign-compare]"),
+ Utils::FileName::fromUserInput(QLatin1String("file.h")), 21,
+ categoryCompile))
+ << QString();
+ QTest::newRow("linker error") // QTCREATORBUG-3107
+ << QString::fromLatin1("cns5k_ins_parser_tests.cpp:(.text._ZN20CNS5kINSParserEngine21DropBytesUntilStartedEP14CircularBufferIhE[CNS5kINSParserEngine::DropBytesUntilStarted(CircularBuffer<unsigned char>*)]+0x6d): undefined reference to `CNS5kINSPacket::SOH_BYTE'")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << ( QList<ProjectExplorer::Task>()
+ << Task(Task::Error,
+ QLatin1String("undefined reference to `CNS5kINSPacket::SOH_BYTE'"),
+ Utils::FileName::fromUserInput(QLatin1String("cns5k_ins_parser_tests.cpp")), -1,
+ categoryCompile))
+ << QString();
+
+ QTest::newRow("uic warning")
+ << QString::fromLatin1("mainwindow.ui: Warning: The name 'pushButton' (QPushButton) is already in use, defaulting to 'pushButton1'.")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << ( QList<ProjectExplorer::Task>()
+ << Task(Task::Warning,
+ QLatin1String("The name 'pushButton' (QPushButton) is already in use, defaulting to 'pushButton1'."),
+ Utils::FileName::fromUserInput(QLatin1String("mainwindow.ui")), -1,
+ Constants::TASK_CATEGORY_COMPILE))
+ << QString();
+
+ QTest::newRow("libimf warning")
+ << QString::fromLatin1("libimf.so: warning: warning: feupdateenv is not implemented and will always fail")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << ( QList<ProjectExplorer::Task>()
+ << Task(Task::Warning,
+ QLatin1String("warning: feupdateenv is not implemented and will always fail"),
+ Utils::FileName::fromUserInput(QLatin1String("libimf.so")), -1,
+ Constants::TASK_CATEGORY_COMPILE))
+ << QString();
+
+ QTest::newRow("gcc 4.8")
+ << QString::fromLatin1("In file included from /home/code/src/creator/src/libs/extensionsystem/pluginerrorview.cpp:31:0:\n"
+ ".uic/ui_pluginerrorview.h:14:25: fatal error: QtGui/QAction: No such file or directory\n"
+ " #include <QtGui/QAction>\n"
+ " ^")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << ( QList<ProjectExplorer::Task>()
+ << Task(Task::Unknown,
+ QLatin1String("In file included from /home/code/src/creator/src/libs/extensionsystem/pluginerrorview.cpp:31:0:"),
+ Utils::FileName::fromUserInput(QLatin1String("/home/code/src/creator/src/libs/extensionsystem/pluginerrorview.cpp")), 31,
+ categoryCompile)
+ << Task(Task::Error,
+ QLatin1String("QtGui/QAction: No such file or directory\n"
+ " #include <QtGui/QAction>\n"
+ " ^"),
+ Utils::FileName::fromUserInput(QLatin1String(".uic/ui_pluginerrorview.h")), 14,
+ categoryCompile))
+ << QString();
+
+ QTest::newRow("qtcreatorbug-9195")
+ << QString::fromLatin1("In file included from /usr/include/qt4/QtCore/QString:1:0,\n"
+ " from main.cpp:3:\n"
+ "/usr/include/qt4/QtCore/qstring.h: In function 'void foo()':\n"
+ "/usr/include/qt4/QtCore/qstring.h:597:5: error: 'QString::QString(const char*)' is private\n"
+ "main.cpp:7:22: error: within this context")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << ( QList<ProjectExplorer::Task>()
+ << Task(Task::Unknown,
+ QLatin1String("In file included from /usr/include/qt4/QtCore/QString:1:0,"),
+ Utils::FileName::fromUserInput(QLatin1String("/usr/include/qt4/QtCore/QString")), 1,
+ categoryCompile)
+ << Task(Task::Unknown,
+ QLatin1String("from main.cpp:3:"),
+ Utils::FileName::fromUserInput(QLatin1String("main.cpp")), 3,
+ categoryCompile)
+ << Task(Task::Unknown,
+ QLatin1String("In function 'void foo()':"),
+ Utils::FileName::fromUserInput(QLatin1String("/usr/include/qt4/QtCore/qstring.h")), -1,
+ categoryCompile)
+ << Task(Task::Error,
+ QLatin1String("'QString::QString(const char*)' is private"),
+ Utils::FileName::fromUserInput(QLatin1String("/usr/include/qt4/QtCore/qstring.h")), 597,
+ categoryCompile)
+ << Task(Task::Error,
+ QLatin1String("within this context"),
+ Utils::FileName::fromUserInput(QLatin1String("main.cpp")), 7,
+ categoryCompile))
+ << QString();
+
+ QTest::newRow("ld: Multiple definition error")
+ << QString::fromLatin1("foo.o: In function `foo()':\n"
+ "/home/user/test/foo.cpp:2: multiple definition of `foo()'\n"
+ "bar.o:/home/user/test/bar.cpp:4: first defined here\n"
+ "collect2: error: ld returned 1 exit status")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << (QList<ProjectExplorer::Task>()
+ << Task(Task::Unknown,
+ QLatin1String("In function `foo()':"),
+ Utils::FileName::fromUserInput(QLatin1String("foo.o")), -1,
+ categoryCompile)
+ << Task(Task::Error,
+ QLatin1String("multiple definition of `foo()'"),
+ Utils::FileName::fromUserInput(QLatin1String("/home/user/test/foo.cpp")), 2,
+ categoryCompile)
+ << Task(Task::Unknown,
+ QLatin1String("first defined here"),
+ Utils::FileName::fromUserInput(QLatin1String("/home/user/test/bar.cpp")), 4,
+ categoryCompile)
+ << Task(Task::Error,
+ QLatin1String("collect2: error: ld returned 1 exit status"),
+ Utils::FileName(), -1,
+ categoryCompile)
+ )
+ << QString();
+
+ QTest::newRow("ld: .data section")
+ << QString::fromLatin1("foo.o:(.data+0x0): multiple definition of `foo'\n"
+ "bar.o:(.data+0x0): first defined here\n"
+ "collect2: error: ld returned 1 exit status")
+ << OutputParserTester::STDERR
+ << QString() << QString()
+ << (QList<ProjectExplorer::Task>()
+ << Task(Task::Error,
+ QLatin1String("multiple definition of `foo'"),
+ Utils::FileName::fromUserInput(QLatin1String("foo.o")), -1,
+ categoryCompile)
+ << Task(Task::Unknown,
+ QLatin1String("first defined here"),
+ Utils::FileName::fromUserInput(QLatin1String("bar.o")), -1,
+ categoryCompile)
+ << Task(Task::Error,
+ QLatin1String("collect2: error: ld returned 1 exit status"),
+ Utils::FileName(), -1,
+ categoryCompile)
+ )
+ << QString();
+}
+
+void ProjectExplorerPlugin::testGccOutputParsers()
+{
+ OutputParserTester testbench;
+ testbench.appendOutputParser(new GccParser);
+ QFETCH(QString, input);
+ QFETCH(OutputParserTester::Channel, inputChannel);
+ QFETCH(QList<Task>, tasks);
+ QFETCH(QString, childStdOutLines);
+ QFETCH(QString, childStdErrLines);
+ QFETCH(QString, outputLines);
+
+ testbench.testParsing(input, inputChannel,
+ tasks, childStdOutLines, childStdErrLines,
+ outputLines);
+}
+#endif
diff --git a/src/plugins/boostbuildprojectmanager/external/projectexplorer/gccparser.h b/src/plugins/boostbuildprojectmanager/external/projectexplorer/gccparser.h
new file mode 100644
index 0000000000..db8ce4f2b3
--- /dev/null
+++ b/src/plugins/boostbuildprojectmanager/external/projectexplorer/gccparser.h
@@ -0,0 +1,67 @@
+/****************************************************************************
+**
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of Qt Creator.
+**
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Digia. For licensing terms and
+** conditions see http://qt.digia.com/licensing. For further information
+** use the contact form at http://qt.digia.com/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 2.1 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 2.1 requirements
+** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Digia gives you certain additional
+** rights. These rights are described in the Digia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+****************************************************************************/
+
+#ifndef GCCPARSER_H
+#define GCCPARSER_H
+
+#include <projectexplorer/ioutputparser.h>
+
+#include <projectexplorer/task.h>
+
+#include <QRegExp>
+
+namespace ProjectExplorer {
+
+class GccParser : public ProjectExplorer::IOutputParser
+{
+ Q_OBJECT
+
+public:
+ GccParser();
+
+ void stdError(const QString &line);
+ void stdOutput(const QString &line);
+
+protected:
+ void newTask(const Task &task);
+ void doFlush();
+
+ void amendDescription(const QString &desc, bool monospaced);
+
+private:
+ QRegExp m_regExp;
+ QRegExp m_regExpIncluded;
+ QRegExp m_regExpGccNames;
+
+ Task m_currentTask;
+};
+
+} // namespace ProjectExplorer
+
+#endif // GCCPARSER_H
diff --git a/src/plugins/boostbuildprojectmanager/external/projectexplorer/ldparser.cpp b/src/plugins/boostbuildprojectmanager/external/projectexplorer/ldparser.cpp
new file mode 100644
index 0000000000..9c3866c121
--- /dev/null
+++ b/src/plugins/boostbuildprojectmanager/external/projectexplorer/ldparser.cpp
@@ -0,0 +1,126 @@
+/****************************************************************************
+**
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of Qt Creator.
+**
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Digia. For licensing terms and
+** conditions see http://qt.digia.com/licensing. For further information
+** use the contact form at http://qt.digia.com/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License Version 2.1 by the Free Software
+** Foundation and appearing in the file LICENSE.txt included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License Version 2.1 requirements
+** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Digia gives you certain additional
+** rights. These rights are described in the Digia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+****************************************************************************/
+
+#include "ldparser.h"
+#include <projectexplorer/projectexplorerconstants.h>
+#include <projectexplorer/task.h>
+
+#include <utils/qtcassert.h>
+
+using namespace ProjectExplorer;
+
+namespace {
+ // opt. drive letter + filename: (2 brackets)
+ const char * const FILE_PATTERN = "(([A-Za-z]:)?[^:]+\\.[^:]+):";
+ // line no. or elf segment + offset (1 bracket)
+ // const char * const POSITION_PATTERN = "(\\d+|\\(\\.[^:]+[+-]0x[a-fA-F0-9]+\\):)";
+ const char * const POSITION_PATTERN = "(\\d+|\\(\\..+[+-]0x[a-fA-F0-9]+\\)):";
+ const char * const COMMAND_PATTERN = "^(.*[\\\\/])?([a-z0-9]+-[a-z0-9]+-[a-z0-9]+-)?(ld|gold)(-[0-9\\.]+)?(\\.exe)?: ";
+}
+
+LdParser::LdParser()
+{
+ setObjectName(QLatin1String("LdParser"));
+ m_regExpLinker.setPattern(QLatin1Char('^') +
+ QString::fromLatin1(FILE_PATTERN) + QLatin1Char('(') +
+ QString::fromLatin1(FILE_PATTERN) + QLatin1String(")?(") +
+ QLatin1String(POSITION_PATTERN) + QLatin1String(")?\\s(.+)$"));
+ m_regExpLinker.setMinimal(true);
+ QTC_CHECK(m_regExpLinker.isValid());
+
+ m_regExpGccNames.setPattern(QLatin1String(COMMAND_PATTERN));
+ m_regExpGccNames.setMinimal(true);
+ QTC_CHECK(m_regExpGccNames.isValid());
+}
+
+void LdParser::stdError(const QString &line)
+{
+ QString lne = rightTrimmed(line);
+ if (lne.startsWith(QLatin1String("TeamBuilder "))
+ || lne.startsWith(QLatin1String("distcc["))
+ || lne.contains(QLatin1String("ar: creating "))) {
+ IOutputParser::stdError(line);
+ return;
+ }
+
+ if (lne.startsWith(QLatin1String("collect2:"))) {
+ emit addTask(Task(Task::Error,
+ lne /* description */,
+ Utils::FileName() /* filename */,
+ -1 /* linenumber */,
+ Constants::TASK_CATEGORY_COMPILE));
+ return;
+ } else if (m_regExpGccNames.indexIn(lne) > -1) {
+ QString description = lne.mid(m_regExpGccNames.matchedLength());
+ Task task(Task::Error,
+ description,
+ Utils::FileName(), /* filename */
+ -1, /* line */
+ Constants::TASK_CATEGORY_COMPILE);
+ if (description.startsWith(QLatin1String("warning: "))) {
+ task.type = Task::Warning;
+ task.description = description.mid(9);
+ } else if (description.startsWith(QLatin1String("fatal: "))) {
+ task.description = description.mid(7);
+ }
+ emit addTask(task);
+ return;
+ } else if (m_regExpLinker.indexIn(lne) > -1) {
+ bool ok;
+ int lineno = m_regExpLinker.cap(7).toInt(&ok);
+ if (!ok)
+ lineno = -1;
+ Utils::FileName filename = Utils::FileName::fromUserInput(m_regExpLinker.cap(1));
+ const QString sourceFileName = m_regExpLinker.cap(4);
+ if (!sourceFileName.isEmpty()
+ && !sourceFileName.startsWith(QLatin1String("(.text"))
+ && !sourceFileName.startsWith(QLatin1String("(.data"))) {
+ filename = Utils::FileName::fromUserInput(sourceFileName);
+ }
+ QString description = m_regExpLinker.cap(8).trimmed();
+ Task task(Task::Error, description, filename, lineno,
+ Constants::TASK_CATEGORY_COMPILE);
+ if (description.startsWith(QLatin1String("At global scope")) ||
+ description.startsWith(QLatin1String("At top level")) ||
+ description.startsWith(QLatin1String("instantiated from ")) ||
+ description.startsWith(QLatin1String("In ")) ||
+ description.startsWith(QLatin1String("first defined here"))) {
+ task.type = Task::Unknown;
+ }
+ if (description.startsWith(QLatin1String("warning: "), Qt::CaseInsensitive)) {
+ task.type = Task::Warning;
+ task.description = description.mid(9);
+ }
+
+ emit addTask(task);
+ return;
+ }
+
+ IOutputParser::stdError(line);
+}
diff --git a/src/plugins/boostbuildprojectmanager/external/projectexplorer/ldparser.h b/src/plugins/boostbuildprojectmanager/external/projectexplorer/ldparser.h
new file mode 100644
index 0000000000..5038763b14
--- /dev/null
+++ b/src/plugins/boostbuildprojectmanager/external/projectexplorer/ldparser.h
@@ -0,0 +1,54 @@
+/****************************************************************************
+**
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of Qt Creator.
+**
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Digia. For licensing terms and
+** conditions see http://qt.digia.com/licensing. For further information
+** use the contact form at http://qt.digia.com/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 2.1 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 2.1 requirements
+** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Digia gives you certain additional
+** rights. These rights are described in the Digia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+****************************************************************************/
+
+#ifndef LDPARSER_H
+#define LDPARSER_H
+
+#include <projectexplorer/ioutputparser.h>
+
+#include <QRegExp>
+
+namespace ProjectExplorer {
+
+class LdParser : public ProjectExplorer::IOutputParser
+{
+ Q_OBJECT
+
+public:
+ LdParser();
+ void stdError(const QString &line);
+
+private:
+ QRegExp m_regExpLinker;
+ QRegExp m_regExpGccNames;
+};
+
+} // namespace ProjectExplorer
+
+#endif // GCCPARSER_H