diff options
author | Beau Johnston <beau@inbeta.org> | 2018-07-02 07:36:24 +1000 |
---|---|---|
committer | Beau Johnston <beau@inbeta.org> | 2018-07-02 07:36:24 +1000 |
commit | 46b57da393c71355ab7304b31189641a87713aa4 (patch) | |
tree | 8c6fe9d68d698eebd762edd9c6c324ea21639062 /mesonbuild | |
parent | 9f2621b0339567c086e803f617d3b2f2c81182b6 (diff) | |
download | meson-flob.zip meson-flob.tar.gz meson-flob.tar.bz2 |
added cuda test caseflob
Diffstat (limited to 'mesonbuild')
-rw-r--r-- | mesonbuild/compilers/cuda.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mesonbuild/compilers/cuda.py b/mesonbuild/compilers/cuda.py index 7cc82f1..f398bad 100644 --- a/mesonbuild/compilers/cuda.py +++ b/mesonbuild/compilers/cuda.py @@ -32,6 +32,9 @@ class CudaCompiler(Compiler): '2': default_warn_args + ['-Wextra'], '3': default_warn_args + ['-Wextra', '-Wpedantic']} + def needs_static_linker(self): + return False + def get_display_language(self): return 'Cuda' |