CodeBuddy
CodeBuddy

Reputation: 6639

Eclipse CDT Console does not link to code for compilation errors

I'm using Eclipse for my C++ project under Linux. When I get compilation errors I can see them in the Console window.

I am currently manually navigating to the file and line number to fix errors. Is is possible to get Eclipse to provide links to the correct file and line number?

Upvotes: 8

Views: 3199

Answers (1)

jon hanson
jon hanson

Reputation: 9408

You may need to configure Eclipse to parse the errors emitted by your compiler to allow it to extract the file name and line number.

The CDT FAQ has some more info: How do I add an Error Parser (or The project seems to build file, but doesn't parse my error output what can I do?)

Note Eclipse CDT should be set up for GCC out of the box. Just noticed you mention you're looking at the Console View. Have you tried looking at the Problem View - this should show a list of Errors & Warnings, where you can double-click each item to jump the file and line in question.

Upvotes: 4

Related Questions