Skip to content

Commit 42c4252

Browse files
committed
C++: Claim beta support for C23 and C++23
All features we can support, we currently do support.
1 parent 7ee862a commit 42c4252

File tree

1 file changed

+20
-19
lines changed

1 file changed

+20
-19
lines changed

docs/codeql/reusables/supported-versions-compilers.rst

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -4,40 +4,41 @@
44
:stub-columns: 1
55

66
Language,Variants,Compilers,Extensions
7-
C/C++,"C89, C99, C11, C17, C++98, C++03, C++11, C++14, C++17, C++20 [1]_ [2]_","Clang (including clang-cl [3]_ and armclang) extensions (up to Clang 17.0),
7+
C/C++,"C89, C99, C11, C17, C23, C++98, C++03, C++11, C++14, C++17, C++20, C++23 [1]_ [2]_ [3]_","Clang (including clang-cl [4]_ and armclang) extensions (up to Clang 17.0),
88

99
GNU extensions (up to GCC 13.2),
1010

1111
Microsoft extensions (up to VS 2022),
1212

13-
Arm Compiler 5 [4]_","``.cpp``, ``.c++``, ``.cxx``, ``.hpp``, ``.hh``, ``.h++``, ``.hxx``, ``.c``, ``.cc``, ``.h``"
13+
Arm Compiler 5 [5]_","``.cpp``, ``.c++``, ``.cxx``, ``.hpp``, ``.hh``, ``.h++``, ``.hxx``, ``.c``, ``.cc``, ``.h``"
1414
C#,C# up to 13,"Microsoft Visual Studio up to 2019 with .NET up to 4.8,
1515

1616
.NET Core up to 3.1
1717

1818
.NET 5, .NET 6, .NET 7, .NET 8, .NET 9","``.sln``, ``.csproj``, ``.cs``, ``.cshtml``, ``.xaml``"
1919
GitHub Actions,"Not applicable",Not applicable,"``.github/workflows/*.yml``, ``.github/workflows/*.yaml``, ``**/action.yml``, ``**/action.yaml``"
2020
Go (aka Golang), "Go up to 1.24", "Go 1.11 or more recent", ``.go``
21-
Java,"Java 7 to 24 [5]_","javac (OpenJDK and Oracle JDK),
21+
Java,"Java 7 to 24 [6]_","javac (OpenJDK and Oracle JDK),
2222

23-
Eclipse compiler for Java (ECJ) [6]_",``.java``
23+
Eclipse compiler for Java (ECJ) [7]_",``.java``
2424
Kotlin,"Kotlin 1.5.0 to 2.1.2\ *x*","kotlinc",``.kt``
25-
JavaScript,ECMAScript 2022 or lower,Not applicable,"``.js``, ``.jsx``, ``.mjs``, ``.es``, ``.es6``, ``.htm``, ``.html``, ``.xhtm``, ``.xhtml``, ``.vue``, ``.hbs``, ``.ejs``, ``.njk``, ``.json``, ``.yaml``, ``.yml``, ``.raml``, ``.xml`` [7]_"
26-
Python [8]_,"2.7, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10, 3.11, 3.12, 3.13",Not applicable,``.py``
27-
Ruby [9]_,"up to 3.3",Not applicable,"``.rb``, ``.erb``, ``.gemspec``, ``Gemfile``"
28-
Swift [10]_,"Swift 5.4-6.0","Swift compiler","``.swift``"
29-
TypeScript [11]_,"2.6-5.8",Standard TypeScript compiler,"``.ts``, ``.tsx``, ``.mts``, ``.cts``"
25+
JavaScript,ECMAScript 2022 or lower,Not applicable,"``.js``, ``.jsx``, ``.mjs``, ``.es``, ``.es6``, ``.htm``, ``.html``, ``.xhtm``, ``.xhtml``, ``.vue``, ``.hbs``, ``.ejs``, ``.njk``, ``.json``, ``.yaml``, ``.yml``, ``.raml``, ``.xml`` [8]_"
26+
Python [9]_,"2.7, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10, 3.11, 3.12, 3.13",Not applicable,``.py``
27+
Ruby [10]_,"up to 3.3",Not applicable,"``.rb``, ``.erb``, ``.gemspec``, ``Gemfile``"
28+
Swift [11]_,"Swift 5.4-6.0","Swift compiler","``.swift``"
29+
TypeScript [12]_,"2.6-5.8",Standard TypeScript compiler,"``.ts``, ``.tsx``, ``.mts``, ``.cts``"
3030

3131
.. container:: footnote-group
3232

3333
.. [1] C++20 modules are *not* supported.
34-
.. [2] Objective-C, Objective-C++, C++/CLI, and C++/CX are not supported.
35-
.. [3] Support for the clang-cl compiler is preliminary.
36-
.. [4] Support for the Arm Compiler (armcc) is preliminary.
37-
.. [5] Builds that execute on Java 7 to 24 can be analyzed. The analysis understands standard language features in Java 8 to 24; "preview" and "incubator" features are not supported. Source code using Java language versions older than Java 8 are analyzed as Java 8 code.
38-
.. [6] ECJ is supported when the build invokes it via the Maven Compiler plugin or the Takari Lifecycle plugin.
39-
.. [7] JSX and Flow code, YAML, JSON, HTML, and XML files may also be analyzed with JavaScript files.
40-
.. [8] The extractor requires Python 3 to run. To analyze Python 2.7 you should install both versions of Python.
41-
.. [9] Requires glibc 2.17.
42-
.. [10] Support for the analysis of Swift requires macOS.
43-
.. [11] TypeScript analysis is performed by running the JavaScript extractor with TypeScript enabled. This is the default.
34+
.. [2] C23 and C++23 support is currently in beta.
35+
.. [3] Objective-C, Objective-C++, C++/CLI, and C++/CX are not supported.
36+
.. [4] Support for the clang-cl compiler is preliminary.
37+
.. [5] Support for the Arm Compiler (armcc) is preliminary.
38+
.. [6] Builds that execute on Java 7 to 24 can be analyzed. The analysis understands standard language features in Java 8 to 24; "preview" and "incubator" features are not supported. Source code using Java language versions older than Java 8 are analyzed as Java 8 code.
39+
.. [7] ECJ is supported when the build invokes it via the Maven Compiler plugin or the Takari Lifecycle plugin.
40+
.. [8] JSX and Flow code, YAML, JSON, HTML, and XML files may also be analyzed with JavaScript files.
41+
.. [9] The extractor requires Python 3 to run. To analyze Python 2.7 you should install both versions of Python.
42+
.. [10] Requires glibc 2.17.
43+
.. [11] Support for the analysis of Swift requires macOS.
44+
.. [12] TypeScript analysis is performed by running the JavaScript extractor with TypeScript enabled. This is the default.

0 commit comments

Comments
 (0)