From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1873) id B8967386100E; Sun, 7 Mar 2021 17:02:30 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org B8967386100E Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Iain Buclaw To: gcc-cvs@gcc.gnu.org Subject: [gcc(refs/users/ibuclaw/heads/darwin)] Darwin, D : Add .d suffix to the list for invoking dsymutil. X-Act-Checkin: gcc X-Git-Author: Iain Sandoe X-Git-Refname: refs/users/ibuclaw/heads/darwin X-Git-Oldrev: 424ed9ec2a354a714c94f7bed77b4d7747ad5030 X-Git-Newrev: cb7997a91c909a2b3db537def7bd690aa4954fee Message-Id: <20210307170230.B8967386100E@sourceware.org> Date: Sun, 7 Mar 2021 17:02:30 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Mar 2021 17:02:30 -0000 https://gcc.gnu.org/g:cb7997a91c909a2b3db537def7bd690aa4954fee commit cb7997a91c909a2b3db537def7bd690aa4954fee Author: Iain Sandoe Date: Fri Dec 11 00:34:39 2020 +0000 Darwin, D : Add .d suffix to the list for invoking dsymutil. Recognise .d for D source files on the command line. This will trigger an invocation of dsymutil when a D source is present. gcc/ChangeLog: * config/darwin.h (DSYMUTIL_SPEC): Recognize D sources. * config/darwin9.h: Likewise. Diff: --- gcc/config/darwin.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/config/darwin.h b/gcc/config/darwin.h index d2b2c141c8e..408916c455b 100644 --- a/gcc/config/darwin.h +++ b/gcc/config/darwin.h @@ -252,7 +252,7 @@ extern GTY(()) int darwin_ms_struct; %{v} \ %{g*:%{!gstabs*:%{%:debug-level-gt(0): -idsym}}}\ %{.c|.cc|.C|.cpp|.cp|.c++|.cxx|.CPP|.m|.mm|.s|.f|.f90|\ - .f95|.f03|.f77|.for|.F|.F90|.F95|.F03: \ + .f95|.f03|.f77|.for|.F|.F90|.F95|.F03|.d: \ %{g*:%{!gstabs*:%{%:debug-level-gt(0): -dsym}}}}}}}}}}}" #define LINK_COMMAND_SPEC LINK_COMMAND_SPEC_A DSYMUTIL_SPEC