Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

OS-X support for std::tr1

Tags:

c++

macos

c++11

tr1

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?

like image 775
Martin York Avatar asked Dec 10 '10 23:12

Martin York


1 Answers

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;
}
like image 85
wilhelmtell Avatar answered Sep 29 '22 13:09

wilhelmtell