Apple和shared_ptr

时间:2012-11-18 23:31:59

标签: c++ macos shared-ptr

我似乎在这里遗漏了一些东西。我从boost::shared_ptr移到了std::shared_ptrshared_ptr在2000年代中期成为TR1的一部分,并且应该在2012年的所有地方都可以使用。

尝试在Apple下使用shared_ptr给我一些未定义的引用:

SecureArray.h:26:12: error: no member named 'shared_ptr' in
      namespace 'std'
using std::shared_ptr;
      ~~~~~^
SecureArray.h:27:12: error: no member named 'tr1' in namespace
      'std'
using std::tr1::shared_ptr;
      ~~~~~^
SecureArray.h:487:5: error: unknown type name 'shared_ptr'
    shared_ptr<SecureVector> m_vector;

典型的编译器命令如下(GCC和Clang都失败):

clang++ -g2 -ggdb -O0 -fcatch-undefined-cxx0x-behavior
  -DSAFEINT_DISALLOW_UNSIGNED_NEGATION=1 -pipe -std=c++0x -Wall -Wextra
  -Wno-unused-parameter -Wno-tautological-compare 
  -I. -I./esapi -I./deps -I/usr/local/include -I/usr/include -fpic
  -c src/DummyConfiguration.cpp -o src/DummyConfiguration.o

我正在尝试将其包含如下(我相信我需要调整它,但我不记得C ++语法说“看这里,或者看那里”):

#include <memory>
using std::shared_ptr;
using std::tr1::shared_ptr;

Apple的手册页没有任何结果:

$ man shared_ptr
No manual entry for shared_ptr
$ man -k shared_ptr
shared_ptr: nothing appropriate

我安装了Mac OS X 10.8(完全修补),Xcode(完全修补)和命令行工具。

那么如何在Apple平台上使用std :: shared_ptr?

1 个答案:

答案 0 :(得分:22)

#include <tr1/memory>将与使用libstdc ++的任一编译器一起使用。或者,与Clang:

#include <memory>
using std::shared_ptr;

并使用c++ -std=c++11 -stdlib=libc++ ...进行编译。我不知道为什么Clang默认使用libstdc ++;大概是GCC的兼容性。

您找不到手册页,因为libstdc ++没有手册页。有帮助,不是吗源代码发布中有HTML文档。