summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorPetr Machacek <machacek@2n.com>2023-09-12 09:11:50 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2024-03-12 20:38:30 +0200
commiteb74bb8dbf74ac22a02e369b6622ee0ef8b5d6a3 (patch)
treea4569279dd3dc926bb8fff9b9d095c1fe9223a1b /docs
parent7399be4ab263f7729e0f516aba3bbfea07aa593d (diff)
downloadmeson-eb74bb8dbf74ac22a02e369b6622ee0ef8b5d6a3.tar.gz
Added support for Texas Instruments C6000 compiler.
Diffstat (limited to 'docs')
-rw-r--r--docs/markdown/Reference-tables.md3
-rw-r--r--docs/markdown/snippets/ti_c6000_compiler_support.md4
2 files changed, 7 insertions, 0 deletions
diff --git a/docs/markdown/Reference-tables.md b/docs/markdown/Reference-tables.md
index 02ac083e5..d30d22a50 100644
--- a/docs/markdown/Reference-tables.md
+++ b/docs/markdown/Reference-tables.md
@@ -37,6 +37,7 @@ These are return values of the `get_id` (Compiler family) and
| rustc | Rust compiler | |
| sun | Sun Fortran compiler | |
| c2000 | Texas Instruments C/C++ Compiler (C2000) | |
+| c6000 | Texas Instruments C/C++ Compiler (C6000) | |
| ti | Texas Instruments C/C++ Compiler | |
| valac | Vala compiler | |
| xc16 | Microchip XC16 C compiler | |
@@ -70,6 +71,7 @@ These are return values of the `get_linker_id` method in a compiler object.
| xc16-ar | The Microchip linker, used with XC16 only |
| ar2000 | The Texas Instruments linker, used with C2000 only |
| ti-ar | The Texas Instruments linker |
+| ar6000 | The Texas Instruments linker, used with C6000 only |
| armlink | The ARM linker (arm and armclang compilers) |
| pgi | Portland/Nvidia PGI |
| nvlink | Nvidia Linker used with cuda |
@@ -105,6 +107,7 @@ set in the cross file.
| arm | 32 bit ARM processor |
| avr | Atmel AVR processor |
| c2000 | 32 bit C2000 processor |
+| c6000 | 32 bit C6000 processor |
| csky | 32 bit CSky processor |
| dspic | 16 bit Microchip dsPIC |
| e2k | MCST Elbrus processor |
diff --git a/docs/markdown/snippets/ti_c6000_compiler_support.md b/docs/markdown/snippets/ti_c6000_compiler_support.md
new file mode 100644
index 000000000..03533e609
--- /dev/null
+++ b/docs/markdown/snippets/ti_c6000_compiler_support.md
@@ -0,0 +1,4 @@
+## Support for Texas Instruments C6000 C/C++ compiler
+
+Meson now supports the TI C6000 C/C++ compiler use for the C6000 cpu family.
+The example cross file is available in `cross/ti-c6000.txt`.