Getting Started with Eclipse CDT -


i have downloaded latest eclipse cdt release (helios) , wanted try luck c++ programming (haven't done in ages).

i tried "hello world" project, got stuck quite fast. first thing - #include <stdio.h> , #include <stdlib.h> got marked 'unresolved symbol' warning. found place can add include paths , pointed these headers visual studio installation have.

after that, looked fine but:

  1. i don't see compilation errors/warnings in problems tab.
  2. i cannot run code - 'launch failed. binary not found' error

my question simple - steps really need code compiled, linked , executed? tried looking on eclipse's site, didn't find reference that.

i'm making guess here, running on windows, because particular error seems windows related one.

you seem missing basic toolchain needed cdt build project. need files before started. suggest mingw installer, simple, , lets build windows compatible binaries.

check out link above, , make sure project links toolchain. hope helps.


Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

html - Instapaper-like algorithm -

c# - How to execute a particular part of code asynchronously in a class -