I'm using CodeWarrior IDE v5.9.0 with C++ to program a HC12X MCU.
However, I can't use the STL such as vector.h.
When I try to compile:
#include <vector.h>
i get an error, saying that it doesn't exist. (i also searched for the file and I couldn't find it neither).
Does this compiler have support for C++ libraries?
Solved! Go to Solution.
Hello
Did you check the Compiler_HC12.pdf manual?
There is a section named Known C++ Issues in the HC(S)12 Compilers in the Appendices.
Table E.1 Unimplemented Header Files lists all the C++ header files that are not available and vector is listed there.
CrasyCat
Thanks a lot.
Hello
Did you check the Compiler_HC12.pdf manual?
There is a section named Known C++ Issues in the HC(S)12 Compilers in the Appendices.
Table E.1 Unimplemented Header Files lists all the C++ header files that are not available and vector is listed there.
CrasyCat