From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 58852 invoked by alias); 8 Apr 2015 18:37:16 -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 58835 invoked by uid 89); 8 Apr 2015 18:37:15 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.4 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-wi0-f179.google.com Received: from mail-wi0-f179.google.com (HELO mail-wi0-f179.google.com) (209.85.212.179) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Wed, 08 Apr 2015 18:37:14 +0000 Received: by widdi4 with SMTP id di4so65574397wid.0 for ; Wed, 08 Apr 2015 11:37:11 -0700 (PDT) X-Received: by 10.194.174.225 with SMTP id bv1mr53319564wjc.101.1428518231481; Wed, 08 Apr 2015 11:37:11 -0700 (PDT) Received: from s42.loc (85-127-9-55.dynamic.xdsl-line.inode.at. [85.127.9.55]) by mx.google.com with ESMTPSA id ch6sm16758050wjc.3.2015.04.08.11.37.10 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Wed, 08 Apr 2015 11:37:10 -0700 (PDT) Received: from cow by s42.loc with local (Exim 4.80) (envelope-from ) id 1Yfuqb-0007k2-Oh; Wed, 08 Apr 2015 20:37:09 +0200 From: Bernhard Reutner-Fischer To: gcc-patches@gcc.gnu.org Cc: Bernhard Reutner-Fischer , Bernd Schmidt , Jie Zhang Subject: [PATCH] PR target/55144: bfin: fix opening glibc-c.o: No such file or directory Date: Wed, 08 Apr 2015 18:37:00 -0000 Message-Id: <1428518228-29728-1-git-send-email-rep.dot.nop@gmail.com> X-IsSubscribed: yes X-SW-Source: 2015-04/txt/msg00345.txt.bz2 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? 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