gdc: Make dependency check work

The -fmake-deps command does not segfault anymore, and if it is used
with "=" there will also be no "file not found" error.
pull/1256/head
Matthias Klumpp 8 years ago committed by Jussi Pakkanen
parent 4b7c39d9d1
commit 7eb96375ca
  1. 4
      mesonbuild/compilers.py

@ -1698,9 +1698,7 @@ class GnuDCompiler(DCompiler):
return []
def get_dependency_gen_args(self, outtarget, outfile):
# FIXME: Passing -fmake-deps results in a file-not-found message.
# Investigate why.
return []
return ['-fmake-deps=' + outfile]
def get_output_args(self, target):
return ['-o', target]

Loading…
Cancel
Save