Elicpse CDT thinks it's broken

I am using Eclipse for any kind of embedded development, and lately I am starting to give me these errors every time I save a file or make an assembly. This is annoying, but for the most part it does not seem to cause any problems (it even still emits warnings / errors in the source. What is happening here?

Plug-in org.eclipse.cdt.cross.arm.gnu was unable to load class 
org.eclipse.cdt.managedbuilder.internal.scannerconfig.DefaultGnuWinScannerInfoCollector.

Plug-in org.eclipse.cdt.cross.arm.gnu was unable to load class  
org.eclipse.cdt.managedbuilder.internal.scannerconfig.ManagedGCCScannerInfoConsoleParser
+3
source share
2 answers

Looks like answers to frequently asked questions in the eclipse wiki

, , . .log, , . Eclipse , Java, , .

. , , . , , , .


(.. runtime PDE), Bundle-ClassPath MANIFEST.MF.
JAR, , Bundle-ClassPath. , - , .class , . (, ), Bundle-ClassPath. JAR, JAR build.properties, .

(. )


, , , eclipse3.0:

plugin.xml "org.eclipse.core.runtime.compatablity" . , Eclipse 3.0.1 "org.eclipse.core.runtime_3.0.1".

:

Plugin.xml

<import plugin="org.eclipse.core.runtime.compatability"/>

<import plugin="org.eclipse.core.runtime"/>
+1

VonC - , ...

arm.cross CDT managedbuild, . CDT. , .

0

Source: https://habr.com/ru/post/1720951/


All Articles