我在Sublime Text 2中运行代码。它向我显示错误:
item->open = std::stod(temp);
错误是:
error: no member named 'stod' in namespace 'std'
item->open = std::stod(temp);
意识到sublime text 2无法运行c ++ 11代码,所以看了这篇文章:http://www.thefourtheye.in/2013/07/Compiling-Cpp-11-Programs-with-Sublime-Text-3.html
在C ++中发布此代码.sublime.build:
{
"cmd": ["g++", "-std=c++0x", "${file}", "-o", "${file_path}/${file_base_name}"],
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
"working_dir": "${file_path}",
"selector": "source.c, source.c++",
"variants":
[
{
"name": "Run",
"cmd":["bash", "-c", "g++ -std=c++0x '${file}' -o '${file_path}/${file_base_name}' && '${file_path}/${file_base_name}'"]
}
]
}
但错误仍然存在。不知道为什么。需要一些指导...
UPDATE1:
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 5.0 (clang-500.2.79) (based on LLVM 3.3svn)
Target: x86_64-apple-darwin12.4.0
Thread model: posix
Update2:已更改为c ++ 11。没有变化。
{
"cmd": ["g++", "-std=c++11", "${file}", "-o", "${file_path}/${file_base_name}"],
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
"working_dir": "${file_path}",
"selector": "source.c, source.c++",
"variants":
[
{
"name": "Run",
"cmd":["bash", "-c", "g++ -std=c++11 '${file}' -o '${file_path}/${file_base_name}' && '${file_path}/${file_base_name}'"]
}
]
}
答案 0 :(得分:5)
默认情况下,您的计算机上的Clang版本(伪装成g++
,Mac上的常见设置)仍然使用libstdc ++(GCC' C ++标准库)。 OS X附带的libstdc++
版本很古老,并且没有C ++ 11支持(std::stod
是C ++ 11的补充)。
将-stdlib=libc++
传递给编译器,使其使用Clang的标准库。