From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12773 invoked by alias); 1 Sep 2009 09:58:21 -0000 Received: (qmail 12758 invoked by uid 22791); 1 Sep 2009 09:58:20 -0000 X-SWARE-Spam-Status: No, hits=-2.1 required=5.0 tests=AWL,BAYES_00,HK_OBFDOM X-Spam-Check-By: sourceware.org Received: from nwd2mail10.analog.com (HELO nwd2mail10.analog.com) (137.71.25.55) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 01 Sep 2009 09:58:15 +0000 Received: from nwd2hubcas1.ad.analog.com ([10.64.73.29]) by nwd2mail10.analog.com with ESMTP; 01 Sep 2009 05:58:13 -0400 Received: from nwd2exm5.ad.analog.com (10.64.51.20) by NWD2HUBCAS1.ad.analog.com (10.64.73.29) with Microsoft SMTP Server id 8.1.358.0; Tue, 1 Sep 2009 05:58:13 -0400 Received: from nwd2exm20.ad.analog.com ([10.64.73.20]) by nwd2exm5.ad.analog.com with Microsoft SMTPSVC(6.0.3790.3959); Tue, 1 Sep 2009 05:58:13 -0400 Received: from chinexm1.ad.analog.com ([10.99.27.42]) by nwd2exm20.ad.analog.com with Microsoft SMTPSVC(6.0.3790.3959); Tue, 1 Sep 2009 05:58:12 -0400 Received: from [10.99.29.103] ([10.99.29.103]) by chinexm1.ad.analog.com with Microsoft SMTPSVC(6.0.3790.1830); Tue, 1 Sep 2009 17:58:09 +0800 Message-ID: <4A9CF027.8020301@analog.com> Date: Tue, 01 Sep 2009 09:58:00 -0000 From: Jie Zhang User-Agent: Mozilla-Thunderbird 2.0.0.22 (X11/20090701) MIME-Version: 1.0 To: binutils@sourceware.org CC: Dave Korn , Ralf.Wildenhues@gmx.de Subject: [PATCH] Fix parallel build error for Blackfin target (was Re: Parallel build error for Blackfin target) References: <4A9CC410.7060301@analog.com> <4A9CCC56.9090008@gmail.com> <4A9CDB37.70604@analog.com> <4A9CDE3C.3000604@analog.com> In-Reply-To: <4A9CDE3C.3000604@analog.com> Content-Type: multipart/mixed; boundary="------------070402040900040906030703" X-IsSubscribed: yes Mailing-List: contact binutils-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: binutils-owner@sourceware.org X-SW-Source: 2009-09/txt/msg00024.txt.bz2 --------------070402040900040906030703 Content-Type: text/plain; charset="windows-1252"; format=flowed Content-Transfer-Encoding: 7bit Content-length: 382 Jie Zhang wrote: > It seems "bfin-parse.h $(srcdir)/config/bfin-defs.h" is still needed as > the prerequisite for bfin-lex.o. > This patch adds back "bfin-parse.h $(srcdir)/config/bfin-defs.h". But I'm not sure this is a good patch or not, since I don't know why Ralf removed them or just by accident. Anyway this fixes my build problem. So I'd like send out for review. Jie --------------070402040900040906030703 Content-Type: text/x-patch; name="gas-prevent-bfin-parse-h-clobber.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="gas-prevent-bfin-parse-h-clobber.diff" Content-length: 851 * Makefile.am (bfin-defs.h, $(srcdir)/config/bfin-defs.h): Rename to ... (bfin-parse.h, $(srcdir)/config/bfin-parse.h): ... these. * Makefile.in: Regenerate. Index: Makefile.am =================================================================== RCS file: /cvs/src/src/gas/Makefile.am,v retrieving revision 1.181 diff -u -r1.181 Makefile.am --- Makefile.am 26 Aug 2009 18:27:36 -0000 1.181 +++ Makefile.am 1 Sep 2009 09:36:56 -0000 @@ -606,8 +606,8 @@ bfin-parse.o: bfin-parse.c bfin-parse.h $(srcdir)/config/bfin-defs.h \ $(INCDIR)/elf/common.h $(INCDIR)/elf/bfin.h $(BFDDIR)/libbfd.h -bfin-defs.h: ; @true -$(srcdir)/config/bfin-defs.h: ; @true +bfin-parse.h: ; @true +$(srcdir)/config/bfin-parse.h: ; @true bfin-lex.c: $(srcdir)/config/bfin-lex.l $(SHELL) $(YLWRAP) $(srcdir)/config/bfin-lex.l lex.yy.c bfin-lex.c -- $(LEXCOMPILE) --------------070402040900040906030703--