Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Compiler docs #4305

Merged
merged 2 commits into from
Nov 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Documentation/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ We invite you to join the ITK community and explore our documentation to find ou
:caption: 💾 Download

download
releases/index
licenses
```


Expand All @@ -42,9 +44,8 @@ API <https://itk.org/Doxygen/html/index.html>
Discussion <https://discourse.itk.org>
Issue tracker <https://github.com/InsightSoftwareConsortium/ITK/issues>
CDash Dashboard <https://open.cdash.org/index.php?project=Insight>
releases/index
supported_compilers
migration_guides/index
contributing/code_of_conduct
contributing/index
licenses
```
Original file line number Diff line number Diff line change
@@ -1,23 +1,29 @@
# Supported Compilers

ITK requires a compiler with C++17 support.

# Visual Studio
## Visual Studio

* VS2017 and earlier: **NOT supported**
* MSVC toolset v142 (first shipped with VS2019): supported
* MSVC toolset v143 (first shipped with VS2022): supported

# GNU Compile Collection
## GNU Compile Collection

* GCC 7 and later [should be supported](https://www.gnu.org/software/gcc/projects/cxx-status.html).

# LLVM Clang
## LLVM Clang

* Clang 5 and later [should be supported](https://clang.llvm.org/cxx_status.html)

# AppleClang
## AppleClang
* AppleClang 10.0.0 and later (from Xcode 10.0) [should be supported](https://en.wikipedia.org/wiki/Xcode#Version_history)

# Intel C++ Compiler
## Intel C++ Compiler
* Intel C++ 19.1 and later

# Future versions
## Future versions

Future versions of these compilers should be backwards compatible, and thus ITK is expected to work with them.

In the near term, ITK should continue compiling with new compiler versions, probably with some warnings. Eventually, ITK will stop compiling with newest compiler versions. But upgrading to a newer version of ITK is recommended long before then!