diff options
author | Brad King <brad.king@kitware.com> | 2021-04-29 13:15:24 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2021-04-29 13:15:32 (GMT) |
commit | 3147f541f7bb411f715e5aa953c4b8913d9fbcd6 (patch) | |
tree | 94816fa81d831059d96403e56860fa14dda8c706 /Help | |
parent | 60288129db444cf0fee4112e87b30e3ad2a0e007 (diff) | |
parent | 9c479c7c40c64d0fbe41cba1b422303989c306f7 (diff) | |
download | CMake-3147f541f7bb411f715e5aa953c4b8913d9fbcd6.zip CMake-3147f541f7bb411f715e5aa953c4b8913d9fbcd6.tar.gz CMake-3147f541f7bb411f715e5aa953c4b8913d9fbcd6.tar.bz2 |
Merge topic 'intel-2021'
9c479c7c40 IntelLLVM: Add special case for ifx 2021.1 version extraction
b7193ab18f Intel: Update Classic compiler version detection for 2021
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !6052
Diffstat (limited to 'Help')
-rw-r--r-- | Help/release/3.20.rst | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/Help/release/3.20.rst b/Help/release/3.20.rst index 86c6a86..f77304f 100644 --- a/Help/release/3.20.rst +++ b/Help/release/3.20.rst @@ -47,11 +47,7 @@ Compilers * The ``icx``/``icpx`` C/C++ compilers on Linux, and the ``icx`` C/C++ compiler on Windows, are fully supported as of oneAPI 2021.1. - * The ``ifx`` Fortran compiler on Linux is partially supported. - As of oneAPI 2021.1, ``ifx`` does not define several identification - macros, so CMake identifies it as the classic ``Intel`` compiler. - This works in many cases because ``ifx`` accepts the same command line - parameters as ``ifort``. A future version of oneAPI may fix this. + * The ``ifx`` Fortran compiler on Linux is supported as of oneAPI 2021.1. * The ``ifx`` Fortran compiler on Windows is not yet supported. @@ -351,3 +347,18 @@ Changes made since CMake 3.20.0 include the following. iOS, tvOS and watchOS should now default to ``@rpath`` instead of using a full absolute path and failing at runtime when the library or framework is embedded in an application bundle (see :prop_tgt:`XCODE_EMBED_<type>`). + +3.20.2 +------ + +* The Intel Classic 2021 compiler version numbers are now detected correctly + as having major version 2021. CMake 3.20.1 and below were not aware of a + change to the identification macro version scheme made by Intel starting + in version 2021, and detected the version as 20.2. + +* The Intel oneAPI Fortran compiler is now identified as ``IntelLLVM``. + The oneAPI 2021.1 Fortran compiler is missing an identification macro, + so CMake 3.20.1 and below identified it as ``Intel``. CMake now has + a special case to recognize oneAPI 2021.1 Fortran as ``IntelLLVM``. + The oneAPI 2021.2 Fortran compiler defines the proper identification + macro and so is identified as ``IntelLLVM`` by all CMake 3.20 versions. |