Using std::vector
I try this simple code:
#include <vector>
int main(){ std::vector<int> tab; int element=2; tab.push_back(element);}
and when I compile it, I have error "(...)include/stlport/stl/_alloc.h:433: undefined reference to `abort'".
Can I somehow use std::vector in crossworks? (I have added included directory $(StudioDir)/include/stlport).
Please sign in to leave a comment.
Comments
2 comments