Image

Imagepaper_crystals wrote in Imagecpp

Does anyone have experience with the Dev-C++ complier?

I typed in the "hello world" program it looked like this:

#include

int main()

{
cout << "Hello world\n";
return 0;
}

The compiler highlighted this line:

$ (CPP) -c "hello world.cpp" -o "hello world.o" $(CXXFLAGS)

and said:

[Build Error][Warning] overriding commands for target "hello'
[Build Error][Warning] ignoring old commands for target "hello'
Circular <- "hello dependancy dropped.

I can't figure out what it means. Thanks.