Rajat
Rajat

Reputation: 1836

Eclipse CDT compiles additional things when doing "build project" or "build all"

I have a simple eclipse CDT project with a very simple makefile. When I hit build-all, it complies the makefile, but also compiles some additional things which take 3-5 seconds more (and it is annoying).

additional compilation image 1 additional compilation image 2

Any ideas why this happens to me? This happens on Eclipse Indigo, on OSX Lion.

Upvotes: 0

Views: 60

Answers (1)

dbrank0
dbrank0

Reputation: 9466

This file is compiled for "scanner discovery" (google this for more). This helps Eclipse figure out what your default include files / settings are, so they can be used with internal scanner.

Upvotes: 1

Related Questions