mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 22:52:11 +02:00
Check for build errors.
This commit is contained in:
parent
40680e5ea9
commit
d9252999b4
1 changed files with 5 additions and 2 deletions
|
@ -5,8 +5,9 @@ package org.eclipse.cdt.internal.errorparsers;
|
|||
* All Rights Reserved.
|
||||
*/
|
||||
|
||||
import org.eclipse.cdt.errorparsers.ErrorParserManager;
|
||||
import org.eclipse.cdt.errorparsers.IErrorParser;
|
||||
import org.eclipse.cdt.core.ErrorParserManager;
|
||||
import org.eclipse.cdt.core.IErrorParser;
|
||||
import org.eclipse.cdt.core.IMarkerGenerator;
|
||||
import org.eclipse.core.runtime.Path;
|
||||
|
||||
public class MakeErrorParser implements IErrorParser {
|
||||
|
@ -55,6 +56,8 @@ public class MakeErrorParser implements IErrorParser {
|
|||
/* Could check to see if they match */
|
||||
}
|
||||
}
|
||||
} else if (msg.startsWith(" ***")) {
|
||||
eoParser.generateMarker(null, 0, msg, IMarkerGenerator.SEVERITY_ERROR_BUILD, null);
|
||||
}
|
||||
}
|
||||
return false;
|
||||
|
|
Loading…
Add table
Reference in a new issue