I have the need to use a C++ class in my code. Hence I have changed the file where I am using this class from a .c to .cpp extension. (I have also tried the option "Treat C Files as C++ Files (--cpp_default, -fp)")
However, since doing this I am now receiving the following error message.
<Linking>
>> Compilation failure
warning #10229-D: output section ".data" refers to load symbol "w2cFxn" and hence cannot be compressed; compression "rle" is ignored
What can I do to resolve this issue? Or alternatively, what other ways can I use a C++ class in my C file?