When I run following code snippet from Xcode4.6 it compiles and runs fine. But when I try to compile it using command line tool (clang++) it fails to do so.
#include <iostream>
#include <memory>
int main(int argc, const char * argv[])
{
std::unique_ptr<int> foo(new int(0));
// insert code here...
std::cout << "Hello, this is cool giri World!\n";
return 0;
}
Here is compile log:
$ clang --version Apple LLVM version 4.2 (clang-425.0.24) (based on LLVM 3.2svn) Target: x86_64-apple-darwin12.2.0 Thread model: posix $ clang++ main.cpp -stdlib=libc++ -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk/usr/include/c++/4.2.1/ -I /usr/llvm-gcc-4.2/lib/gcc/i686-apple-darwin11/4.2.1/include/ main.cpp:7:10: error: no member named 'unique_ptr' in namespace 'std' std::unique_ptr foo(new int(0)); ~~~~~^ main.cpp:7:24: error: expected '(' for function-style cast or type construction std::unique_ptr foo(new int(0)); ~~~^ main.cpp:7:26: error: use of undeclared identifier 'foo' std::unique_ptr foo(new int(0)); ^ 3 errors generated.
clang++ -std=c++11
cannot find the definition forstd::unique_ptr
, even when#include <memory>
. strange compiler this. use gcc. – Walter