Lord Loh.
Lord Loh.

Reputation: 2477

`SDK` packages in Eclipse

What are SDK packages in eclipse? When I try to install a new software / plugin, I see things like -

 

etc. Not all packages have a second with an SDK, but some do. What are the differences between the two? What does CDT provide me and what does CDT SDK provide me?

Upvotes: 6

Views: 2999

Answers (2)

nitind
nitind

Reputation: 20013

The SDK features typically include source and developer documentation for building on the base project, so it would be the viewable sources for CDT and documentation on how to plug into it where possible. If you're just using the tools to write your own programs, the SDK feature is typically not needed.

Upvotes: 7

TieDad
TieDad

Reputation: 9929

In simple, C++ tool is compiler etc. tools. And C++ SDK is C++ provided libraries that might be used in your project.

Upvotes: 1

Related Questions