1
0
Fork 0
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:
Doug Schaefer 2007-09-13 20:57:00 +00:00
parent 4b68d13f3e
commit 98b5fb5d33

View file

@ -62,12 +62,14 @@ public class MakeErrorParser extends AbstractErrorParser {
},
//[foo] signal description
new ErrorPattern("(make.*\\d+\\s+\\w+.*)", 1, IMarkerGenerator.SEVERITY_ERROR_RESOURCE) { //$NON-NLS-1
protected boolean recordError(Matcher matcher, ErrorParserManager eoParser) {
super.recordError(matcher, eoParser);
return true;
}
},
// Turning off for now, bug 203269
// This is reporting an error on the line 'make -j8 ...'
// new ErrorPattern("(make.*\\d+\\s+\\w+.*)", 1, IMarkerGenerator.SEVERITY_ERROR_RESOURCE) { //$NON-NLS-1
// protected boolean recordError(Matcher matcher, ErrorParserManager eoParser) {
// super.recordError(matcher, eoParser);
// return true;
// }
// },
//missing separator. Stop.
new ErrorPattern("(make.*missing separator.\\s*Stop.)", 1, IMarkerGenerator.SEVERITY_ERROR_RESOURCE) { //$NON-NLS-1
protected boolean recordError(Matcher matcher, ErrorParserManager eoParser) {