我想使用Emscripten编译C ++代码,我在其中使用了一些C ++ 11功能。不幸的是我收到了一个错误:
index.cpp:13:18: error: expected expression
vv.push_back({1.5f, 2.f});
^
index.cpp:14:18: error: expected expression
vv.push_back({5.f, 0});
^
index.cpp:15:18: error: expected expression
vv.push_back({1, 1});
^
index.cpp:17:9: warning: 'auto' type specifier is a C++11 extension [-Wc++11-extensions]
for(auto& item : vv) {
^
index.cpp:17:20: warning: range-based for loop is a C++11 extension [-Wc++11-extensions]
for(auto& item : vv) {
我无法理解,为什么我会收到这个错误。最新的Emscripten和Clang版本使用emsdk
激活。
代码是:
#include<iostream>
#include<vector>
struct AA {
float a;
float b;
};
int main() {
std::vector<AA> vv;
vv.push_back({1.5f, 2.f});
vv.push_back({5.f, 0});
vv.push_back({1, 1});
for(auto& item : vv) {
std::cout << item.a << ' ' << item.b << std::endl;
}
}
我甚至收到一条消息:LLVM version appears incorrect (seeing "4.0", expected "3.7")
如果确实如此,它应该是wotk,因为&#34; Clang 3.3及更高版本实现了所有ISO C ++ 2011标准。&#34;