I just wrote a small hello world in RAD Studio 2010, the code is this

//---------------------------------------------------------------------------
#include <iostream>
//---------------------------------------------------------------------------

int main(int argc, char **argv) {
    std::cout << "Hello World\n" << std::endl;
    return 0;
}
//---------------------------------------------------------------------------

after tryint to compile it, I get:

[BCC32 Error] cwchar(33): E2141 Declaration syntax error
  Full parser context
    main.cc(2): #include C:\Program Files (x86)\Embarcadero\RAD Studio\7.0\include\boost_1_39\boost\tr1\tr1\iostream
    iostream(16): #include C:\Program Files (x86)\Embarcadero\RAD Studio\7.0\include\boost_1_39\boost/tr1/detail/config_all.hpp
    config_all.hpp(151): #include c:\program files (x86)\embarcadero\rad studio\7.0\include\../include/dinkumware/utility
    utility(5): #include c:\program files (x86)\embarcadero\rad studio\7.0\include\dinkumware\iosfwd
    iosfwd(7): #include c:\program files (x86)\embarcadero\rad studio\7.0\include\dinkumware\cwchar
[BCC32 Error] cwchar(37): E2141 Declaration syntax error
  Full parser context
    main.cc(2): #include C:\Program Files (x86)\Embarcadero\RAD Studio\7.0\include\boost_1_39\boost\tr1\tr1\iostream
    iostream(16): #include C:\Program Files (x86)\Embarcadero\RAD Studio\7.0\include\boost_1_39\boost/tr1/detail/config_all.hpp
    config_all.hpp(151): #include c:\program files (x86)\embarcadero\rad studio\7.0\include\../include/dinkumware/utility
    utility(5): #include c:\program files (x86)\embarcadero\rad studio\7.0\include\dinkumware\iosfwd
    iosfwd(7): #include c:\program files (x86)\embarcadero\rad studio\7.0\include\dinkumware\cwchar
…

What the heck is going on here?

link|improve this question

1  
Does rad studio recognise .cc as an extension for C++ files? The common extension is .cpp. – nbt Apr 28 '11 at 13:26
1  
Maybe you're trying to compile as C, not C++? – Ernest Friedman-Hill Apr 28 '11 at 13:27
can you add your comments as answers so I can vote them up? – Sambatyon Apr 28 '11 at 13:31
2  
undelete your response and accept it. It's fine to do this if you work it out by yourself, though with a nod to @unapersson for being on the right track. – Steve Townsend Apr 28 '11 at 13:44
feedback

1 Answer

up vote 3 down vote accepted

I should close this question, the problem was that the extention of the file was .c

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.