From 1419a6a316d24cc04a3353475d734f0bc45532a0 Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Tue, 19 Aug 2014 21:18:19 +0300 Subject: Do Fortran dependency tracking manually because of bugs in other pieces of software. --- environment.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'environment.py') diff --git a/environment.py b/environment.py index 7c4b8c9..018bb17 100644 --- a/environment.py +++ b/environment.py @@ -1205,7 +1205,10 @@ end program prog return get_gcc_soname_args(self.gcc_type, shlib_name, path, soversion) def get_dependency_gen_args(self, outtarget, outfile): - return ['-cpp', '-MMD', '-MQ', outtarget] + # Disabled until this is fixed: + # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62162 + #return ['-cpp', '-MMD', '-MQ', outtarget] + return [] def get_output_args(self, target): return ['-o', target] -- cgit v1.1