aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers
diff options
context:
space:
mode:
authorBeau Johnston <beau@inbeta.org>2018-07-02 07:36:24 +1000
committerBeau Johnston <beau@inbeta.org>2018-07-02 07:36:24 +1000
commit46b57da393c71355ab7304b31189641a87713aa4 (patch)
tree8c6fe9d68d698eebd762edd9c6c324ea21639062 /mesonbuild/compilers
parent9f2621b0339567c086e803f617d3b2f2c81182b6 (diff)
downloadmeson-flob.zip
meson-flob.tar.gz
meson-flob.tar.bz2
added cuda test caseflob
Diffstat (limited to 'mesonbuild/compilers')
-rw-r--r--mesonbuild/compilers/cuda.py3
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'