diff options
author | alanNz <alangrimmer@gmail.com> | 2020-03-21 09:13:42 +1300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2020-03-21 00:47:24 +0200 |
commit | 74602928100394f6129e064f8e0bfe6c9e08c9d2 (patch) | |
tree | e3ae62b782a91ade9d68210a52cea35f18211d8e /docs/markdown | |
parent | 24227a95531b21a04bf2514a5b8f61ae29d47043 (diff) | |
download | meson-74602928100394f6129e064f8e0bfe6c9e08c9d2.zip meson-74602928100394f6129e064f8e0bfe6c9e08c9d2.tar.gz meson-74602928100394f6129e064f8e0bfe6c9e08c9d2.tar.bz2 |
-Add xc16 and c2000 C,Cpp toolchain support
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/Reference-tables.md | 10 | ||||
-rw-r--r-- | docs/markdown/snippets/xc16_c2000.md | 8 |
2 files changed, 16 insertions, 2 deletions
diff --git a/docs/markdown/Reference-tables.md b/docs/markdown/Reference-tables.md index 8c55180..f8d690c 100644 --- a/docs/markdown/Reference-tables.md +++ b/docs/markdown/Reference-tables.md @@ -9,6 +9,7 @@ These are return values of the `get_id` (Compiler family) and | ----- | --------------- | --------------- | | arm | ARM compiler | | | armclang | ARMCLANG compiler | | +| c2000 | Texas Instruments C2000 compiler | | | ccrx | Renesas RX Family C/C++ compiler | | | clang | The Clang compiler | gcc | | clang-cl | The Clang compiler (MSVC compatible driver) | msvc | @@ -26,10 +27,11 @@ These are return values of the `get_id` (Compiler family) and | nagfor | The NAG Fortran compiler | | | open64 | The Open64 Fortran Compiler | | | pathscale | The Pathscale Fortran compiler | | -| pgi | Portland PGI C/C++/Fortran compilers | | +| pgi | Portland PGI C/C++/Fortran compilers | | | rustc | Rust compiler | | | sun | Sun Fortran compiler | | | valac | Vala compiler | | +| xc16 | Microchip XC16 C compiler | | ## Linker ids @@ -48,6 +50,8 @@ These are return values of the `get_linker_id` method in a compiler object. | xilink | Used with Intel-cl only, MSVC like | | optlink | optlink (used with DMD) | | 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 | | armlink | The ARM linker (arm and armclang compilers) | | pgi | Portland/Nvidia PGI | | nvlink | Nvidia Linker used with cuda | @@ -55,7 +59,6 @@ These are return values of the `get_linker_id` method in a compiler object. For languages that don't have separate dynamic linkers such as C# and Java, the `get_linker_id` will return the compiler name. - ## Script environment variables | Value | Comment | @@ -79,6 +82,7 @@ set in the cross file. | arc | 32 bit ARC processor | | arm | 32 bit ARM processor | | e2k | MCST Elbrus processor | +| c2000 | 32 bit C2000 processor | | ia64 | Itanium processor | | m68k | Motorola 68000 processor | | microblaze | MicroBlaze processor | @@ -97,6 +101,8 @@ set in the cross file. | sparc64 | SPARC v9 processor | | wasm32 | 32 bit Webassembly | | wasm64 | 64 bit Webassembly | +| pic24 | 16 bit Microchip PIC24 | +| dspic | 16 bit Microchip dsPIC | | x86 | 32 bit x86 processor | | x86_64 | 64 bit x86 processor | diff --git a/docs/markdown/snippets/xc16_c2000.md b/docs/markdown/snippets/xc16_c2000.md new file mode 100644 index 0000000..437864e --- /dev/null +++ b/docs/markdown/snippets/xc16_c2000.md @@ -0,0 +1,8 @@ +## Added Microchip XC16 C compiler support +Make sure compiler executables are setup correctly in your path +Compiler is available from the Microchip website for free + + +## Added Texas Instruments C2000 C/C++ compiler support +Make sure compiler executables are setup correctly in your path +Compiler is available from Texas Instruments website for free |