1

So, I had eclipse working, but I had to send my computer in for a replacement. Set up Eclipse with MinGW like I did before, and now it cannot resolve any of the header files.

I've edited the environment variables and all that jazz, so I dunno what to do.

EDIT: Also getting an unresolved inclusion error.

Jake Cooper
  • 109
  • 1
  • 3
  • 9

3 Answers3

0

Are you doing

#include <stdio.h>

or

#include "stdio.h"

?

The first one tells it to look in the standard library, while the second tells it to look locally. Try switching to the first.

forefinger
  • 3,767
  • 1
  • 22
  • 18
0

Fixed the problem, was missing the libraries is MinGW, so I added the ones I needed and voila, its working.

Thank you for everyones suggestions!

Jake Cooper
  • 109
  • 1
  • 3
  • 9
0

You can run this command:

sudo apt-get install build-essential
Unheilig
  • 16,196
  • 193
  • 68
  • 98
dincer.unal
  • 67
  • 1
  • 2
  • 13