support clang-cl#35
Conversation
|
I got the constexpr steps related error: |
|
Ok, so I'm not surprised you got the constpexr:steps problem, because there are tests and examples which compile constexpr functions that need more steps than the usual default. Given that clang-cl seems to be unable to set the constexpr steps like normal clang, gcc and normal visual code are able to, then you could instead conditionally disable the compilation of those tests/examples. |
|
OR there may be a solution! Try adding this for clang-cl:
OR maybe this:
both of which I found suggested here: https://stackoverflow.com/questions/41010768/clang-cl-exe-and-constexpr-depth |
worked! |
the same changes as maths