Dear experts,
I know that CCS 3.3 supports C/C++ compiler. So, I wanna try to compile my small project using C++ compiler.
But when I compiled the project, it couldn't find iostream and, of course, didn't understand what is cout.
===========main.cpp============
#include <iostream>
using namespace std;
int main() {
cout<<"Hi";
}
==============================
Is there somthing wrong? I read this article http://processors.wiki.ti.com/index.php/Overview_of_C++_Support_in_TI_Compilers, but it doesn't explicitly say anything about compiling project using C++ compiler.
I really need your help.
Thank in advance.