aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorWilliam Toohey <wtoohey@tritium.com.au>2022-01-27 12:45:57 +1000
committerJussi Pakkanen <jpakkane@gmail.com>2022-02-02 16:45:05 +0200
commitb4d9b2551c32288754a3008d14895c6fe53f48e2 (patch)
tree0e13c8818bbd8e368ca01069154b8482a047a833 /docs
parent316cf3a717744bd849a04de4a1625c06779f90a9 (diff)
downloadmeson-b4d9b2551c32288754a3008d14895c6fe53f48e2.zip
meson-b4d9b2551c32288754a3008d14895c6fe53f48e2.tar.gz
meson-b4d9b2551c32288754a3008d14895c6fe53f48e2.tar.bz2
Genericise TI compiler and add MSP430 support
Diffstat (limited to 'docs')
-rw-r--r--docs/markdown/Reference-tables.md5
-rw-r--r--docs/markdown/snippets/ti_compilers.md8
2 files changed, 12 insertions, 1 deletions
diff --git a/docs/markdown/Reference-tables.md b/docs/markdown/Reference-tables.md
index 22fb9e8..acd1297 100644
--- a/docs/markdown/Reference-tables.md
+++ b/docs/markdown/Reference-tables.md
@@ -9,7 +9,6 @@ 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 |
@@ -32,6 +31,8 @@ These are return values of the `get_id` (Compiler family) and
| pgi | Portland PGI C/C++/Fortran compilers | |
| rustc | Rust compiler | |
| sun | Sun Fortran compiler | |
+| c2000 | Texas Instruments C/C++ Compiler (C2000) | |
+| ti | Texas Instruments C/C++ Compiler | |
| valac | Vala compiler | |
| xc16 | Microchip XC16 C compiler | |
| cython | The Cython compiler | |
@@ -55,6 +56,7 @@ These are return values of the `get_linker_id` method in a compiler object.
| rlink | The Renesas linker, used with CCrx only |
| xc16-ar | The Microchip linker, used with XC16 only |
| ar2000 | The Texas Instruments linker, used with C2000 only |
+| ti-ar | The Texas Instruments linker |
| armlink | The ARM linker (arm and armclang compilers) |
| pgi | Portland/Nvidia PGI |
| nvlink | Nvidia Linker used with cuda |
@@ -97,6 +99,7 @@ set in the cross file.
| microblaze | MicroBlaze processor |
| mips | 32 bit MIPS processor |
| mips64 | 64 bit MIPS processor |
+| msp430 | 16 bit MSP430 processor |
| parisc | HP PA-RISC processor |
| pic24 | 16 bit Microchip PIC24 |
| ppc | 32 bit PPC processors |
diff --git a/docs/markdown/snippets/ti_compilers.md b/docs/markdown/snippets/ti_compilers.md
new file mode 100644
index 0000000..7683331
--- /dev/null
+++ b/docs/markdown/snippets/ti_compilers.md
@@ -0,0 +1,8 @@
+## Added support for Texas Instruments MSP430 and ARM compilers
+
+Meson now supports the TI [MSP430](https://www.ti.com/tool/MSP-CGT) and
+[ARM](https://www.ti.com/tool/ARM-CGT) toolchains. The compiler and linker are
+identified as `ti` and `ti-ar`, respectively. To maintain backwards
+compatibility with existing build definitions, the [C2000
+toolchain](https://www.ti.com/tool/C2000-CGT) is still identified as `c2000` and
+`ar2000`.