C99 extension on windows #2113
Unanswered
patrick-nicodemus
asked this question in
Q&A
Replies: 1 comment
-
If I correctly remember, the clang on Windows should produce binary compatible with MSVC, so it may be worth trying. Hoverer, you are the first coming with such a problem (or first that I spot) so I cannot point you to any instructions for setup clang on action runner and which env variable need to be set. (As I know, the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want to use a C99 extension with Python. The code uses variable length arrays which are not part of the C++ language. MSVC does not support this C99 feature and it doesn't look like they plan to.
Can I use cibuildwheel to cross-compile my code on Windows, perhaps with Clang instead of MSVC? Or am I out of luck?
Beta Was this translation helpful? Give feedback.
All reactions