From patchwork Mon Aug 12 14:17:45 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nick Clifton X-Patchwork-Id: 266549 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "localhost", Issuer "www.qmailtoaster.com" (not verified)) by ozlabs.org (Postfix) with ESMTPS id ACDEB2C0100 for ; Tue, 13 Aug 2013 00:20:27 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :to:subject:date:message-id:mime-version:content-type; q=dns; s= default; b=Y3+S3vemTvCsYLRd2Ji6mRDT/OEan5A/uM12fhM6SAe43ZSRTWyHK hayVoUlCtdCwuaNK+LX6peqREFCeUq+WwOZmC8pO5TlsusYTcCGMquEuit70FL54 93Tp8BL1M/38ICeemU+4N7ug3iyDbNiU+ket5Okq42MrvJGDEei7zQ= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :to:subject:date:message-id:mime-version:content-type; s= default; bh=P968s+Up/ilsAxJ8NtqZjQ/Z27c=; b=oLq7l6FfLKj/lSniNsof ejov7/+QuBm3JiVBxLdTmkZFD9S9UBQi3I1blr/axE+QgRCEu7u8MMmix0+r7V7x iS773SDS5S4ROBPXTts9/qZLF/67CM5lmQGoUujgXnT7WyoD37Zr8bCEL1/H2Npq lCHOIEBmo1KOgM3jTKJthlc= Received: (qmail 9248 invoked by alias); 12 Aug 2013 14:20:21 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 9237 invoked by uid 89); 12 Aug 2013 14:20:21 -0000 X-Spam-SWARE-Status: No, score=-7.6 required=5.0 tests=AWL, BAYES_00, RCVD_IN_HOSTKARMA_W, RCVD_IN_HOSTKARMA_WL, RP_MATCHES_RCVD, SPF_HELO_PASS, SPF_PASS autolearn=ham version=3.3.2 Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Mon, 12 Aug 2013 14:20:20 +0000 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r7CEKJmx006019 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 12 Aug 2013 10:20:19 -0400 Received: from Cadeux.fritz.box.redhat.com (vpn1-7-8.ams2.redhat.com [10.36.7.8]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id r7CEKG9p020990 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Mon, 12 Aug 2013 10:20:18 -0400 From: Nick Clifton To: gcc-patches@gcc.gnu.org Subject: Commit: M32R: Fix config problem building m32r-linux toolchains Date: Mon, 12 Aug 2013 15:17:45 +0100 Message-ID: <87y587ouwm.fsf@Cadeux.fritz.box> MIME-Version: 1.0 Hi Guys, I am applying the patch below to fix a small problem building m32r-linux toolchains - the glibc-c.o object file was not being built because the definition of tmake_file in M32R section of config.gcc was not allowing for the inclusion of t-glibc. Cheers Nick gcc/ChangeLog 2013-08-12 Nick Clifton * config.gcc (m32r-linux): Allow for tmake_file not being empty. Index: gcc/config.gcc =================================================================== --- gcc/config.gcc (revision 201658) +++ gcc/config.gcc (working copy) @@ -1705,8 +1705,7 @@ ;; m32r-*-linux*) tm_file="dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h ${tm_file} m32r/linux.h" - # We override the tmake_file for linux -- why? - tmake_file="m32r/t-linux t-slibgcc" + tmake_file="${tmake_file} m32r/t-linux t-slibgcc" gnu_ld=yes if test x$enable_threads = xyes; then thread_file='posix' @@ -1714,8 +1713,7 @@ ;; m32rle-*-linux*) tm_file="dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h m32r/little.h ${tm_file} m32r/linux.h" - # We override the tmake_file for linux -- why? - tmake_file="m32r/t-linux t-slibgcc" + tmake_file="${tmake_file} m32r/t-linux t-slibgcc" gnu_ld=yes if test x$enable_threads = xyes; then thread_file='posix'