标签: gcc clang constexpr compiler-options
可以通过clang或gcc的命令行选项配置constexpr编译时递归限制吗?怎么样?
答案 0 :(得分:4)
当我使用gcc超出限制时,我收到以下错误消息:
error: constexpr evaluation depth exceeds maximum of 512 (use -fconstexpr-depth= to increase the maximum)
根据documentation,clang理解相同的选项。