如何在Xcode for Mac OSX中启用C 17?
作者:互联网
如何在OSX High Sierra(10.13.5)上的Xcode(9.4.1)中启用C 17?
解决方法:
在OSX High Sierra(10.13.5)上使用Xcode(9.4.1)中的C 17的步骤:
>在Xcode中打开现有或创建一个新的C项目
>单击“显示项目导航器”按钮.它位于最小化/最大化/关闭窗口按钮下方的Xcode窗口的左上部分.它是最左侧的图标,看起来像一个文件夹.
>单击“构建设置”并向下滚动以查找并展开“Apple LLVM 9.0 – 语言 – C”部分
>将C语言方言组合框选择更改为“C 17 [-std = c 17]”
验证步骤:
现在当我输出__cplusplus时,我看到201703,我能够编译C 17的功能,例如constexpr.
template<class T>
int compute(T x) {
if constexpr( supportsAPI(T{}) ) {
// only gets compiled if the condition is true
return x.Method();
} else {
return 0;
}
}
int main(){
cout << __cplusplus << endl;
return 0;
}
输出:
201703
Program ended with exit code: 0
标签:macos-high-sierra,c,xcode,c17,xcode9-4 来源: https://codeday.me/bug/20191006/1860807.html