On 7/8/24 18:54, Warner Losh wrote:
The branch main has been updated by imp:
URL:
https://cgit.FreeBSD.org/src/commit/?id=4122295afcbf4b7ad0623bbf35f36dc3278ac028
commit 4122295afcbf4b7ad0623bbf35f36dc3278ac028
Author: Warner Losh <[email protected]>
AuthorDate: 2024-07-02 22:45:49 +0000
Commit: Warner Losh <[email protected]>
CommitDate: 2024-07-08 22:54:02 +0000
cdefs(9): Start to document what sys/cdefs.h does
---
share/man/man9/Makefile | 1 +
share/man/man9/cdefs.9 | 405 ++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 406 insertions(+)
diff --git a/share/man/man9/cdefs.9 b/share/man/man9/cdefs.9
new file mode 100644
index 000000000000..a065e0bd7d1d
--- /dev/null
+++ b/share/man/man9/cdefs.9
@@ -0,0 +1,405 @@
+.Sh Supported Compilers
+.Bl -tag -offset 2n -width 0
+.It Compilers supported for building programs on Fx :
+.Bl -column -offset 0n indent-two
+.It Sy Compiler Ta Sy Versions
+.It gcc Ta 9, 10, 11, 12, 13, 14
+.It clang Ta 10, 11, 12, 13, 14, 15, 16, 17, 18
+.It TinyC (tcc) Ta 0.9
+.It pcc Ta 1.1
+.El
+.Pp
+Due to testing constraints, tcc and pcc may not always work.
+.It Compilers supported for building Fx itself:
+.Bl -column -offset 0n indent-two
+.It Sy Compiler Ta Sy Versions
+.It gcc Ta 12, 13
+.It clang Ta 16, 17, 19
s/19/18/?
--
John Baldwin