Thanks Bryan.
host_toolchain.depflags.append('-std=c++0x')
where the depflags seems to be removed from host_toolchain.
Now I'm using the code from
copperhead.github.com and the only change is with regards the '
this' command indicator (diff of backend/inc/utility/initializers.hpp below)
46c46
< push_back(input);
---
> this->push_back(input);
93c93
< insert(std::make_pair(key, val));
---
> this->insert(std::make_pair(key, val));
141c141
< insert(val);
---
> this->insert(val);
Just a tiny comment: the icon for github isn't showing that's why probably I went to google code instead...
Cheers.
Dorival