-
Apologies if this is the wrong place to ask. Is there any place to see what windows images are available and what compilers and versions each has? I am looking into Windows support for our project, and we use the abseil C++ library which is only officially supported via MSVC. So I am wondering if MSVC is installed on any of them.. if not which ones are? Etc. Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Depends on your CI system. What are you planning on using? Pre-installed software for GitHub Actions and Azure runners can be seen here: https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners - you can generally find similar lists with other CI systems. You really should always be using MSVC, as other compilers are not officially supported (though you generally can make them work, more or less). cibuildwheel just uses what's on the system; Python is pre-configured to use a recent MSVC; you can manually set up others (such as with https://github.com/ilammy/msvc-dev-cmd for GitHub Actions). |
Beta Was this translation helpful? Give feedback.
Depends on your CI system. What are you planning on using? Pre-installed software for GitHub Actions and Azure runners can be seen here: https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners - you can generally find similar lists with other CI systems.
You really should always be using MSVC, as other compilers are not officially supported (though you generally can make them work, more or less).
cibuildwheel just uses what's on the system; Python is pre-configured to use a recent MSVC; you can manually set up others (such as with https://github.com/ilammy/msvc-dev-cmd for GitHub Actions).