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 //[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) {