OS-X support for std::tr1
Asked Answered
F

1

7

What is the current support for tr1 or the new C++0x on the Mac

I know that the gcc supplied with XCode is always a couple of versions behind that available from gcc.gnu.org so I was just wondering what the state of play for modern support was.

For example do I need to download boost to use shared_ptr or can I get it from std::tr1?

Folia answered 10/12, 2010 at 23:33 Comment(0)
L
9

OS X 10.6 ships with g++ 4.2.1 as well as g++ 4.0, but it should be straightforward to install your own build if you choose to. GNU tools are awesome for that. This builds on my machine, a Snow Leopard Mac with g++ 4.2.1:

#include <tr1/memory>

int main(int argc, char* argv[])
{
    std::tr1::shared_ptr<int> p;
    return 0;
}
Liberty answered 10/12, 2010 at 23:50 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.