diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2019-03-22 23:40:52 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-03-24 20:56:06 +0200 |
commit | 8361da5c52e880225df50d209318ef2184c2dbb9 (patch) | |
tree | d6561a9ef4edd9a76f54a23773156a9d1ac7c70c /mesonbuild/compilers/compilers.py | |
parent | 3037ade41dc0cfc1cb84b0a668784c8d1af46987 (diff) | |
download | meson-8361da5c52e880225df50d209318ef2184c2dbb9.zip meson-8361da5c52e880225df50d209318ef2184c2dbb9.tar.gz meson-8361da5c52e880225df50d209318ef2184c2dbb9.tar.bz2 |
Fix setup so test suite runs with rustc + MSVC. Closes: 5099
Diffstat (limited to 'mesonbuild/compilers/compilers.py')
-rw-r--r-- | mesonbuild/compilers/compilers.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mesonbuild/compilers/compilers.py b/mesonbuild/compilers/compilers.py index ceefefe..da02980 100644 --- a/mesonbuild/compilers/compilers.py +++ b/mesonbuild/compilers/compilers.py @@ -61,7 +61,6 @@ c_suffixes = lang_suffixes['c'] + ('h',) clib_langs = ('objcpp', 'cpp', 'objc', 'c', 'fortran',) # List of languages that can be linked with C code directly by the linker # used in build.py:process_compilers() and build.py:get_dynamic_linker() -# XXX: Add Rust to this? clink_langs = ('d', 'cuda') + clib_langs clink_suffixes = () for _l in clink_langs + ('vala',): |