diff options
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/Reference-tables.md | 2 | ||||
-rw-r--r-- | docs/markdown/snippets/add_compcert_compiler.md | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/docs/markdown/Reference-tables.md b/docs/markdown/Reference-tables.md index 55c1a99..3fadbde 100644 --- a/docs/markdown/Reference-tables.md +++ b/docs/markdown/Reference-tables.md @@ -10,6 +10,7 @@ These are return values of the `get_id` (Compiler family) and | arm | ARM compiler | | | armclang | ARMCLANG compiler | | | c2000 | Texas Instruments C2000 compiler | | +| ccomp | The CompCert formally-verified C compiler | | | ccrx | Renesas RX Family C/C++ compiler | | | clang | The Clang compiler | gcc | | clang-cl | The Clang compiler (MSVC compatible driver) | msvc | @@ -56,6 +57,7 @@ These are return values of the `get_linker_id` method in a compiler object. | armlink | The ARM linker (arm and armclang compilers) | | pgi | Portland/Nvidia PGI | | nvlink | Nvidia Linker used with cuda | +| ccomp | CompCert used as the linker driver | For languages that don't have separate dynamic linkers such as C# and Java, the `get_linker_id` will return the compiler name. diff --git a/docs/markdown/snippets/add_compcert_compiler.md b/docs/markdown/snippets/add_compcert_compiler.md new file mode 100644 index 0000000..b8e45f8 --- /dev/null +++ b/docs/markdown/snippets/add_compcert_compiler.md @@ -0,0 +1,3 @@ +## Added CompCert C compiler + +Added experimental support for the [CompCert formally-verified C compiler](https://github.com/AbsInt/CompCert). The current state of the implementation is good enough to build the [picolibc project](https://github.com/picolibc/picolibc) with CompCert, but might still need additional adjustments for other projects. |