From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 61260 invoked by alias); 22 Apr 2015 08:26:55 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 61241 invoked by uid 89); 22 Apr 2015 08:26:54 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-lb0-f178.google.com Received: from mail-lb0-f178.google.com (HELO mail-lb0-f178.google.com) (209.85.217.178) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Wed, 22 Apr 2015 08:26:53 +0000 Received: by lbbqq2 with SMTP id qq2so174124609lbb.3 for ; Wed, 22 Apr 2015 01:26:50 -0700 (PDT) MIME-Version: 1.0 X-Received: by 10.152.6.166 with SMTP id c6mr7462893laa.93.1429691210308; Wed, 22 Apr 2015 01:26:50 -0700 (PDT) Received: by 10.152.45.3 with HTTP; Wed, 22 Apr 2015 01:26:50 -0700 (PDT) In-Reply-To: <1428518228-29728-1-git-send-email-rep.dot.nop@gmail.com> References: <1428518228-29728-1-git-send-email-rep.dot.nop@gmail.com> Date: Wed, 22 Apr 2015 08:26:00 -0000 Message-ID: Subject: Re: [PATCH] PR target/55144: bfin: fix opening glibc-c.o: No such file or directory From: Bernhard Reutner-Fischer To: GCC Patches Cc: Bernhard Reutner-Fischer , Bernd Schmidt , Jie Zhang Content-Type: text/plain; charset=UTF-8 X-IsSubscribed: yes X-SW-Source: 2015-04/txt/msg01267.txt.bz2 On 8 April 2015 at 20:37, Bernhard Reutner-Fischer wrote: > building all-gcc for bfin-linux-uclibc results in > > build/genchecksum cp/cp-lang.o c-family/stub-objc.o ... glibc-c.o \ > libbackend.a .. > cc1plus-checksum.c.tmp > opening glibc-c.o: No such file or directory > make[2]: *** [cc1-checksum.c] Error 1 > > Fix this by prepending tmake_file which nowadays consists of t-slibgcc > t-linux t-glibc. Remove the already listed tmake_file entries. > > Fixes all-gcc config-list.mk build for bfin-linux-uclibc. > Ok for trunk? This was OKed by Jeff and committed to trunk as r222313. thanks, > > gcc/ChangeLog > > PR target/55144 > * config.gcc (bfin*-linux-uclibc*): Prepend tmake_file and > remove already contained t-files. > > Signed-off-by: Bernhard Reutner-Fischer > Cc: Bernd Schmidt > Cc: Jie Zhang > Signed-off-by: Bernhard Reutner-Fischer > --- > gcc/config.gcc | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/gcc/config.gcc b/gcc/config.gcc > index cb08a5c..ddbd57b 100644 > --- a/gcc/config.gcc > +++ b/gcc/config.gcc > @@ -1118,7 +1118,7 @@ bfin*-uclinux*) > ;; > bfin*-linux-uclibc*) > tm_file="${tm_file} dbxelf.h elfos.h bfin/elf.h gnu-user.h linux.h glibc-stdint.h bfin/linux.h ./linux-sysroot-suffix.h" > - tmake_file="bfin/t-bfin-linux t-slibgcc t-linux" > + tmake_file="${tmake_file} bfin/t-bfin-linux" > use_collect2=no > ;; > bfin*-rtems*) > -- > 2.1.4 >