diff options
| author | Nirbheek Chauhan <nirbheek@centricular.com> | 2018-06-19 09:47:25 +0530 |
|---|---|---|
| committer | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2018-06-20 11:27:08 +0000 |
| commit | 58ae2c9a8c52bcf881682286cc4393d85c87a07f (patch) | |
| tree | 111bfe05c11a8f5ddfe4c9a39aee943495295912 /mesonbuild/compilers/__init__.py | |
| parent | d73748815014b8b4bbbd7fe7fb8b50b8a75aecfc (diff) | |
| download | meson-58ae2c9a8c52bcf881682286cc4393d85c87a07f.tar.gz | |
Rename clike_langs to clink_langs for clarity
D is not a 'c-like' language, but it can link to C libraries. The same
might be true of Rust in the future and Go when we add support for it.
This contains no functionality changes.
Diffstat (limited to 'mesonbuild/compilers/__init__.py')
| -rw-r--r-- | mesonbuild/compilers/__init__.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mesonbuild/compilers/__init__.py b/mesonbuild/compilers/__init__.py index 8c5a7f73e..217357b8e 100644 --- a/mesonbuild/compilers/__init__.py +++ b/mesonbuild/compilers/__init__.py @@ -28,7 +28,7 @@ __all__ = [ 'all_languages', 'base_options', 'clib_langs', - 'clike_langs', + 'clink_langs', 'c_suffixes', 'cpp_suffixes', 'get_macos_dylib_install_name', @@ -42,7 +42,7 @@ __all__ = [ 'is_source', 'lang_suffixes', 'sanitizer_compile_args', - 'sort_clike', + 'sort_clink', 'ArmCCompiler', 'ArmCPPCompiler', @@ -105,7 +105,7 @@ from .compilers import ( all_languages, base_options, clib_langs, - clike_langs, + clink_langs, c_suffixes, cpp_suffixes, get_macos_dylib_install_name, @@ -119,7 +119,7 @@ from .compilers import ( is_library, lang_suffixes, sanitizer_compile_args, - sort_clike, + sort_clink, ClangCompiler, CompilerArgs, GnuCompiler, |
