From patchwork Sat Dec 31 00:43:26 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Walter Lee X-Patchwork-Id: 133708 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 D97CAB6FA8 for ; Sat, 31 Dec 2011 11:43:43 +1100 (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=1325897024; h=Comment: DomainKey-Signature:Received:Received:Received:Received: Message-ID:Date:From:User-Agent:MIME-Version:To:Subject: References:In-Reply-To:Content-Type:Mailing-List:Precedence: List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender: Delivered-To; bh=rIfk+u3qORkctJ6fNaqjR6p1/Bw=; b=W7XlAzTyslKy5xE uL5ksTEz7VR1AIMBm0Qxk08/4C3pkmMinb4bJL4vSbb51E/gQJZwqZVU+ZhKp4kr uRepSrpTxnOMwRN8EKHvcO2kmD2BwMIeCo9XuYeX6W99q/cBWPCkl7TVrAiIkwAN NCsHN85Nw7ZD9WKOtvl9gN4jlb78= 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:Message-ID:Date:From:User-Agent:MIME-Version:To:Subject:References:In-Reply-To:Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=dQ7DHIz/K/Js158No2VVxlrGgZ+2W8anHMCYqUfSeVLezLIhGWeUaLxH9GUfJi GKJvVThf8/M3rT0ybLFuJwtjCc4M3RSw8IgoOXUyE+BVnq4BACFwDdFjAuiEZ+Nl b634J0i+nv/hcOHxeb7b7cfbq6UDuNSuI3zfcUpfk58Es=; Received: (qmail 25176 invoked by alias); 31 Dec 2011 00:43:39 -0000 Received: (qmail 25168 invoked by uid 22791); 31 Dec 2011 00:43:38 -0000 X-SWARE-Spam-Status: No, hits=-2.6 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) (206.83.70.75) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sat, 31 Dec 2011 00:43:24 +0000 Received: from [192.168.1.48] (98.229.97.107) by USMAExch2.tad.internal.tilera.com (10.3.0.33) with Microsoft SMTP Server id 14.0.694.0; Fri, 30 Dec 2011 19:43:23 -0500 Message-ID: <4EFE5AAE.2080508@tilera.com> Date: Fri, 30 Dec 2011 19:43:26 -0500 From: Walter Lee User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:8.0) Gecko/20111105 Thunderbird/8.0 MIME-Version: 1.0 To: Subject: New port resubmission for TILEPro and TILE-Gx 4/6: libcpp port References: <4EFE57A3.3070003@tilera.com> In-Reply-To: <4EFE57A3.3070003@tilera.com> 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 Here is the libcpp port. 2011-12-30 Walter Lee * configure.ac: Require 64-bit hwint for tilegx and tilepro. * configure: Regenerate. diff -r -u -p -N /home/packages/gcc-4.7.0-182680/libcpp/configure ./libcpp/configure --- /home/packages/gcc-4.7.0-182680/libcpp/configure 2011-12-25 17:50:24.000000000 -0500 +++ ./libcpp/configure 2011-12-29 22:06:47.767943000 -0500 @@ -7382,7 +7382,8 @@ case $target in s390*-*-* | \ sparc*-*-* | \ spu-*-* | \ - sh[123456789lbe]*-*-* | sh-*-*) + sh[123456789lbe]*-*-* | sh-*-* | \ + tilegx-*-* | tilepro-*-* ) need_64bit_hwint=yes ;; *) need_64bit_hwint=no ;; diff -r -u -p -N /home/packages/gcc-4.7.0-182680/libcpp/configure.ac ./libcpp/configure.ac --- /home/packages/gcc-4.7.0-182680/libcpp/configure.ac 2011-12-08 13:45:51.000000000 -0500 +++ ./libcpp/configure.ac 2011-12-29 22:06:47.784911000 -0500 @@ -162,7 +162,8 @@ case $target in s390*-*-* | \ sparc*-*-* | \ spu-*-* | \ - sh[123456789lbe]*-*-* | sh-*-*) + sh[123456789lbe]*-*-* | sh-*-* | \ + tilegx-*-* | tilepro-*-* ) need_64bit_hwint=yes ;; *) need_64bit_hwint=no ;;