1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-31 04:45:38 +02:00

Check for build errors.

This commit is contained in:
Alain Magloire 2002-10-23 18:21:56 +00:00
parent 40680e5ea9
commit d9252999b4

View file

@ -5,8 +5,9 @@ package org.eclipse.cdt.internal.errorparsers;
* All Rights Reserved. * All Rights Reserved.
*/ */
import org.eclipse.cdt.errorparsers.ErrorParserManager; import org.eclipse.cdt.core.ErrorParserManager;
import org.eclipse.cdt.errorparsers.IErrorParser; import org.eclipse.cdt.core.IErrorParser;
import org.eclipse.cdt.core.IMarkerGenerator;
import org.eclipse.core.runtime.Path; import org.eclipse.core.runtime.Path;
public class MakeErrorParser implements IErrorParser { public class MakeErrorParser implements IErrorParser {
@ -55,6 +56,8 @@ public class MakeErrorParser implements IErrorParser {
/* Could check to see if they match */ /* Could check to see if they match */
} }
} }
} else if (msg.startsWith(" ***")) {
eoParser.generateMarker(null, 0, msg, IMarkerGenerator.SEVERITY_ERROR_BUILD, null);
} }
} }
return false; return false;