diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2020-12-14 15:00:04 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-14 15:00:04 +0000 |
commit | 9f1ba4025260e620c8e49c3825ddfd51c1c4c4b6 (patch) | |
tree | 3f430800cb71748cf98af3dc2f4bbdcc95631b23 /mesonbuild/compilers/compilers.py | |
parent | bab108742244bdfde769ea34424a0c0722a460c2 (diff) | |
parent | f22d54690ba81da5ba5db7a981e3cfdb04de6ef2 (diff) | |
download | meson-9f1ba4025260e620c8e49c3825ddfd51c1c4c4b6.zip meson-9f1ba4025260e620c8e49c3825ddfd51c1c4c4b6.tar.gz meson-9f1ba4025260e620c8e49c3825ddfd51c1c4c4b6.tar.bz2 |
Merge pull request #8013 from mesonbuild/cppmodules
C++ module support
Diffstat (limited to 'mesonbuild/compilers/compilers.py')
-rw-r--r-- | mesonbuild/compilers/compilers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/compilers.py b/mesonbuild/compilers/compilers.py index 2900e19..2acd429 100644 --- a/mesonbuild/compilers/compilers.py +++ b/mesonbuild/compilers/compilers.py @@ -55,7 +55,7 @@ lib_suffixes = ('a', 'lib', 'dll', 'dll.a', 'dylib', 'so') # type: T.Tuple[str, # This means we can't include .h headers here since they could be C, C++, ObjC, etc. lang_suffixes = { 'c': ('c',), - 'cpp': ('cpp', 'cc', 'cxx', 'c++', 'hh', 'hpp', 'ipp', 'hxx', 'ino'), + 'cpp': ('cpp', 'cc', 'cxx', 'c++', 'hh', 'hpp', 'ipp', 'hxx', 'ino', 'ixx'), 'cuda': ('cu',), # f90, f95, f03, f08 are for free-form fortran ('f90' recommended) # f, for, ftn, fpp are for fixed-form fortran ('f' or 'for' recommended) |