diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2019-05-10 13:56:04 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2019-05-13 11:22:31 -0700 |
commit | be88945ee38dde0aadb77bdb69e9c8ac7eceb832 (patch) | |
tree | f88a898f497c550e3f1ebd0647994d4983671a8b /docs/markdown | |
parent | b557d00f90452f710a6f797fbdb84b462f7bcf30 (diff) | |
download | meson-be88945ee38dde0aadb77bdb69e9c8ac7eceb832.zip meson-be88945ee38dde0aadb77bdb69e9c8ac7eceb832.tar.gz meson-be88945ee38dde0aadb77bdb69e9c8ac7eceb832.tar.bz2 |
docs/reference-table: Add intel-cl
Because the Intel compiler behaves significantly differently on windows
than it does on Linux and MacOS I've decided it would be better to
follow the clang/clang-cl split and make id "intel-cl" on windows
(leaving "intel" alone on Linux and Mac). Since we've never supported
ICL and it hasn't worked in the past I think this is an okay change to
make.
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/Reference-tables.md | 47 |
1 files changed, 24 insertions, 23 deletions
diff --git a/docs/markdown/Reference-tables.md b/docs/markdown/Reference-tables.md index d3a6815..682e508 100644 --- a/docs/markdown/Reference-tables.md +++ b/docs/markdown/Reference-tables.md @@ -5,29 +5,30 @@ These are return values of the `get_id` (Compiler family) and `get_argument_syntax` (Argument syntax) method in a compiler object. -| Value | Compiler family | Argument syntax | -| ----- | --------------- | --------------- | -| arm | ARM compiler | | -| armclang | ARMCLANG compiler | | -| ccrx | Renesas RX Family C/C++ compiler | | -| clang | The Clang compiler | gcc | -| clang-cl | The Clang compiler (MSVC compatible driver) | msvc | -| dmd | D lang reference compiler | | -| flang | Flang Fortran compiler | | -| g95 | The G95 Fortran compiler | | -| gcc | The GNU Compiler Collection | gcc | -| intel | Intel compiler | msvc on windows, otherwise gcc | -| lcc | Elbrus C/C++/Fortran Compiler | | -| llvm | LLVM-based compiler (Swift, D) | | -| mono | Xamarin C# compiler | | -| msvc | Microsoft Visual Studio | msvc | -| nagfor | The NAG Fortran compiler | | -| open64 | The Open64 Fortran Compiler | | -| pathscale | The Pathscale Fortran compiler | | -| pgi | Portland PGI C/C++/Fortran compilers | | -| rustc | Rust compiler | | -| sun | Sun Fortran compiler | | -| valac | Vala compiler | | +| Value | Compiler family | Argument syntax | +| ----- | --------------- | --------------- | +| arm | ARM compiler | | +| armclang | ARMCLANG compiler | | +| ccrx | Renesas RX Family C/C++ compiler | | +| clang | The Clang compiler | gcc | +| clang-cl | The Clang compiler (MSVC compatible driver) | msvc | +| dmd | D lang reference compiler | | +| flang | Flang Fortran compiler | | +| g95 | The G95 Fortran compiler | | +| gcc | The GNU Compiler Collection | gcc | +| intel | Intel compiler (Linux and Mac) | gcc | +| intel-cl | Intel compiler (Windows) | msvc | +| lcc | Elbrus C/C++/Fortran Compiler | | +| llvm | LLVM-based compiler (Swift, D) | | +| mono | Xamarin C# compiler | | +| msvc | Microsoft Visual Studio | msvc | +| nagfor | The NAG Fortran compiler | | +| open64 | The Open64 Fortran Compiler | | +| pathscale | The Pathscale Fortran compiler | | +| pgi | Portland PGI C/C++/Fortran compilers | | +| rustc | Rust compiler | | +| sun | Sun Fortran compiler | | +| valac | Vala compiler | | ## Script environment variables |