1 | // SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd. |
---|---|
2 | // |
3 | // SPDX-License-Identifier: GPL-3.0-or-later |
4 | |
5 | #ifndef LDPARSER_H |
6 | #define LDPARSER_H |
7 | |
8 | #include "services/builder/ioutputparser.h" |
9 | #include <QRegularExpression> |
10 | |
11 | class LdParser : public IOutputParser |
12 | { |
13 | Q_OBJECT |
14 | |
15 | public: |
16 | LdParser(); |
17 | void stdError(const QString &line) override; |
18 | |
19 | private: |
20 | QRegularExpression ranlib; |
21 | QRegularExpression regExpLinker; |
22 | QRegularExpression regExpGccNames; |
23 | }; |
24 | |
25 | #endif // LDPARSER_H |
26 |