Skip to content

Commit 3fbd7c6

Browse files
committed
Clarify that for C it can be C99 or C11.
1 parent 67eac42 commit 3fbd7c6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/user_manual.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,9 +114,9 @@ For C the codebase under analysis must comply with C99 or C11 and use one of the
114114

115115
| Compiler | Version | Standard library | Target architecture | Required Flags |
116116
| -------- | ------- | ------------------- | --------------------- | -------------------------- |
117-
| clang | 10.0.0 | glibc (default) | x86_64-linux-gnu | -std=c11 |
118-
| gcc | 8.4.0 | glibc (default) | x86_64-linux-gnu | -std=c11 |
119-
| qcc | 8.3.0 | glibc (default) | gcc_ntoaarch64le | -std=c11 -nopipe |
117+
| clang | 10.0.0 | glibc (default) | x86_64-linux-gnu | `-std=c11` or `-std=c99` |
118+
| gcc | 8.4.0 | glibc (default) | x86_64-linux-gnu | `-std=c11` or `-std=c99` |
119+
| qcc | 8.3.0 | glibc (default) | gcc_ntoaarch64le | `-std=c11 -nopipe` or `-std=c99 -nopipe` |
120120

121121
Use of the queries outside these scenarios is possible, but not validated for functional safety. In particular:
122122
- Use of the queries against codebases written with more recent versions of C (as supported by CodeQL) are not validated in the following circumstances:

0 commit comments

Comments
 (0)