aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/d.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2020-09-22 15:18:24 -0700
committerDylan Baker <dylan@pnwbakers.com>2020-10-01 15:05:00 -0700
commitd3a059b55fac4e9cc3c7c306b2e6a4cf5e424aad (patch)
tree7951e833a430ff7b60e1ad9c3a924fa48aa0b1a0 /mesonbuild/compilers/d.py
parent6d173f9678b02fce302c9bb59f0c8d19c6178fde (diff)
downloadmeson-d3a059b55fac4e9cc3c7c306b2e6a4cf5e424aad.zip
meson-d3a059b55fac4e9cc3c7c306b2e6a4cf5e424aad.tar.gz
meson-d3a059b55fac4e9cc3c7c306b2e6a4cf5e424aad.tar.bz2
compilers/cuda: make type safe
Diffstat (limited to 'mesonbuild/compilers/d.py')
-rw-r--r--mesonbuild/compilers/d.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/mesonbuild/compilers/d.py b/mesonbuild/compilers/d.py
index 5f5f7d4..5bcda58 100644
--- a/mesonbuild/compilers/d.py
+++ b/mesonbuild/compilers/d.py
@@ -206,9 +206,6 @@ class DmdLikeCompilerMixin:
return self.get_target_arch_args()
return []
- def get_std_exe_link_args(self):
- return []
-
def gen_import_library_args(self, implibname):
return self.linker.import_library_args(implibname)
@@ -561,9 +558,6 @@ class DCompiler(Compiler):
return self.get_target_arch_args()
return []
- def get_std_exe_link_args(self):
- return []
-
def _get_compiler_check_args(self, env, extra_args, dependencies, mode='compile'):
if callable(extra_args):
extra_args = extra_args(mode)