mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Bug 203269 - commented out a pattern in the error parser that was reporting make -j8 as an error.
This commit is contained in:
parent
4b68d13f3e
commit
98b5fb5d33
1 changed files with 8 additions and 6 deletions
|
@ -62,12 +62,14 @@ public class MakeErrorParser extends AbstractErrorParser {
|
||||||
},
|
},
|
||||||
|
|
||||||
//[foo] signal description
|
//[foo] signal description
|
||||||
new ErrorPattern("(make.*\\d+\\s+\\w+.*)", 1, IMarkerGenerator.SEVERITY_ERROR_RESOURCE) { //$NON-NLS-1
|
// Turning off for now, bug 203269
|
||||||
protected boolean recordError(Matcher matcher, ErrorParserManager eoParser) {
|
// This is reporting an error on the line 'make -j8 ...'
|
||||||
super.recordError(matcher, eoParser);
|
// new ErrorPattern("(make.*\\d+\\s+\\w+.*)", 1, IMarkerGenerator.SEVERITY_ERROR_RESOURCE) { //$NON-NLS-1
|
||||||
return true;
|
// protected boolean recordError(Matcher matcher, ErrorParserManager eoParser) {
|
||||||
}
|
// super.recordError(matcher, eoParser);
|
||||||
},
|
// return true;
|
||||||
|
// }
|
||||||
|
// },
|
||||||
//missing separator. Stop.
|
//missing separator. Stop.
|
||||||
new ErrorPattern("(make.*missing separator.\\s*Stop.)", 1, IMarkerGenerator.SEVERITY_ERROR_RESOURCE) { //$NON-NLS-1
|
new ErrorPattern("(make.*missing separator.\\s*Stop.)", 1, IMarkerGenerator.SEVERITY_ERROR_RESOURCE) { //$NON-NLS-1
|
||||||
protected boolean recordError(Matcher matcher, ErrorParserManager eoParser) {
|
protected boolean recordError(Matcher matcher, ErrorParserManager eoParser) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue