看一看这段代码:奇怪锵行为
#include <iostream>
#include <string>
void foo(int(*f)()) {
std::cout << f() << std::endl;
}
void foo(std::string(*f)()) {
std::string s = f();
std::cout << s << std::endl;
}
int main() {
auto bar = []() -> std::string {
return std::string("bla");
};
foo(bar);
return 0;
}
编译它
g++ -o test test.cpp -std=c++11
导致:
bla
像它应该做的。与
clang++ -o test test.cpp -std=c++11 -stdlib=libc++
编译它会导致:
zsh: illegal hardware instruction ./test
而且随着
clang++ -o test test.cpp -std=c++11 -stdlib=stdlibc++
编译它也导致:
zsh: illegal hardware instruction ./test
锵/ GCC版本:
clang version 3.2 (tags/RELEASE_32/final)
Target: x86_64-pc-linux-gnu
Thread model: posix
gcc version 4.7.2 (Gentoo 4.7.2-r1 p1.5, pie-0.5.5)
任何有什么建议是什么问题?
在此先感谢!
我会说这是叮铛中的一个错误 – 2013-04-03 21:30:39
仅供参考,有关[ud2和clang]的更多信息(http://stackoverflow.com/q/26309300/1708801) – 2015-03-19 14:47:25