Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Building a C++ project using rake in Eclipse

I have a C++ project that I build using rake rather than make. To set this up in Eclipse I disabled the CDT and Scanner builders and created a rake builder pointing to the rake executable. This causes the project to be built correctly with Ctrl-B. However, the C++ error parser doesn't seem to be kicking in on the output.

What do I need to do to get g++ output processed by the error parser?

like image 908
Sasha Avatar asked Apr 02 '12 23:04

Sasha


1 Answers

Have you tried this?

  1. In the C/C++ Projects view, right-click the project, and select Properties.
  2. Expand C/C++ Build.
  3. Select Settings.
  4. Click the Error Parsers tab.
  5. In the Error parsers list, select error parsers.
  6. Click OK.

Refer: Adding a C++ Error Parser in Eclipse

like image 90
Akshay Anurag Avatar answered Sep 24 '22 01:09

Akshay Anurag