毕业论文开发语言企业开发JAVA技术.NET技术WEB开发Linux/Unix数据库技术Windows平台移动平台嵌入式论文范文英语论文
您现在的位置: 毕业论文 >> 移动平台 >> 正文

如何让clang3.2支援c++11 第2页

更新时间:2013-2-11:  来源:毕业论文
 
 
Clang 3.2 supports most of the language features added in the latest ISO C++ standard,C++ 2011. Use -std=c++11 or -std=gnu++11 to enable support for these features.
需要添加编译选项 -std=c++11 或 -std=gnu++11
mac os里面默认自带的gcc版本较低
建议还是升级下
没有升级gcc,改用system path下的clang++编译(用XCODE下载了command line tools)
结果居然编译过关了
指令
clang++ -stdlib=libc++ -std=c++11 main.cpp -o test
int main(int argc, const char * argv[]) {       // insert code here...     std::cout << "Hello, World!\n";           auto func = [](){ std::cout << "hahaha\n"; };     func();           std::vector<std::string> strs{"yahoo", "haha"};     for(auto const &data : strs){         std::cout<<data<<std::endl;     }       std::vector<std::string> strs2 = std::move(strs);     for(auto const &data : strs2){         std::cout<<data<<std::endl;     }       std::unique_ptr<int> A(new int(3));     std::cout<<*A<<std::endl;           print_comma_separated_list(32, "444", 34.564564, "lalamimilolipo");           return 0; }

上一页  [1] [2] 

设为首页 | 联系站长 | 友情链接 | 网站地图 |

copyright©youerw.com 优尔论文网 严禁转载
如果本毕业论文网损害了您的利益或者侵犯了您的权利,请及时联系,我们一定会及时改正。