This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TMS320F28388D: How to get C++ .cpp to compile for TMS320F28388D on Code Composer

Part Number: TMS320F28388D


I cannot get C++ to compile.

I have this:

#include <string>
#include <string.h>
#include <iostream>


string tst1()
{
    string strtst = "This is a test.";

    return strtst;
}

and when I try to build the project I get this error:

error #20: identifier "string" is undefined

In project properties it shows

"C++ Dialect   Compile program in C++03 mode (--c++03)

How can I get Code Composer to Compile and Link C++ program?

Thanks.