开发者

OS-X support for std::tr1

开发者 https://www.devze.com 2023-01-29 19:22 出处:网络
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 w

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 m开发者_如何学Goodern support was.

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


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;
}
0

精彩评论

暂无评论...
验证码 换一张
取 消