From patchwork Thu Aug 16 20:10:06 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Walter Lee X-Patchwork-Id: 178082 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]) by ozlabs.org (Postfix) with SMTP id 357612C0085 for ; Fri, 17 Aug 2012 06:10:39 +1000 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=gcc.gnu.org; s=default; x=1345752640; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Received: Date:Message-ID:From:To:Subject:Reply-To:MIME-Version: Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:Sender:Delivered-To; bh=pgaCccb 1cWzSNxLYDGQXeEmMCyk=; b=w8C2/dudm9IPBE8G3UnLw1uvgzukmhl5z+QUiH8 dVMhnympLMXcKcbYvBZifSJaCIES3xHN5+qco9Taec+z1GJvGZgR+8Jrved4OQ03 1WJeSFdfJkIYuLv6juVf0ZZ0e2PcXlKitB/2QoVKfs8xFbgGe/hr3YXX/xDNQMpm YLVA= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=gcc.gnu.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:Received:Date:Message-ID:From:To:Subject:Reply-To:MIME-Version:Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=f6p1ZZbLqyfWPZiZomAi30MQHYoEM0F3Z6124cKcG0bySMqjtDsqBEjiA5BPIm rrr583gwrbmBBJfoYEzQYpSt0n0yS2yFgTyq5rwcbr5GpsBm5YFj6HkRqePkUTVz rb/8+hUNRLe1eRxo2uD3CQS0LKS2QqeVY48gT9MemGMw4=; Received: (qmail 8413 invoked by alias); 16 Aug 2012 20:10:30 -0000 Received: (qmail 8351 invoked by uid 22791); 16 Aug 2012 20:10:20 -0000 X-SWARE-Spam-Status: No, hits=-1.1 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD, TW_EG X-Spam-Check-By: sourceware.org Received: from usmamail.tilera.com (HELO USMAMAIL.TILERA.COM) (12.216.194.151) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 16 Aug 2012 20:10:08 +0000 Received: from farm-0038.internal.tilera.com (10.2.0.68) by USMAEXCH2.tad.internal.tilera.com (10.3.0.33) with Microsoft SMTP Server (TLS) id 14.0.694.0; Thu, 16 Aug 2012 16:10:06 -0400 Received: (from walt@localhost) by farm-0038.internal.tilera.com (8.14.4/8.12.11/Submit) id q7GKA6kc010342; Thu, 16 Aug 2012 16:10:06 -0400 Date: Thu, 16 Aug 2012 16:10:06 -0400 Message-ID: <201208162010.q7GKA6kc010342@farm-0038.internal.tilera.com> From: Walter Lee To: Subject: [committed] TILE-Gx/TILEPro: add stub header file Reply-To: Walter Lee MIME-Version: 1.0 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 This patch adds a stub header file "feedback.h," needed to compile glibc and linux. Walter Index: gcc/config.gcc =================================================================== --- gcc/config.gcc (revision 190448) +++ gcc/config.gcc (working copy) @@ -2440,6 +2440,7 @@ tilegx-*-linux*) extra_objs="mul-tables.o" c_target_objs="tilegx-c.o" cxx_target_objs="tilegx-c.o" + extra_headers="feedback.h" ;; tilepro-*-linux*) tm_file="elfos.h gnu-user.h linux.h glibc-stdint.h tilepro/linux.h ${tm_file}" @@ -2447,6 +2448,7 @@ tilepro-*-linux*) extra_objs="mul-tables.o" c_target_objs="tilepro-c.o" cxx_target_objs="tilepro-c.o" + extra_headers="feedback.h" ;; v850-*-rtems*) target_cpu_default="TARGET_CPU_generic" Index: gcc/config/tilegx/feedback.h =================================================================== --- gcc/config/tilegx/feedback.h (revision 0) +++ gcc/config/tilegx/feedback.h (revision 0) @@ -0,0 +1 @@ +/* This file is currently empty and serves as a placeholder. */ Index: gcc/config/tilepro/feedback.h =================================================================== --- gcc/config/tilepro/feedback.h (revision 0) +++ gcc/config/tilepro/feedback.h (revision 0) @@ -0,0 +1 @@ +/* This file is currently empty and serves as a placeholder. */