From patchwork Tue Apr 2 15:08:47 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sebastian Huber X-Patchwork-Id: 233046 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 2762E2C0250 for ; Wed, 3 Apr 2013 02:09:09 +1100 (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:cc:subject:date:message-id:in-reply-to:references; q=dns; s= default; b=kir6dYjvIH2hnf1kC18a+YB7XWTqK8ovkRBNtNp/aOVEH/DZJTTOg 7oS7goAPiE3V6Egu9AJNVQZJoKWTZqLtMZDFiox+csBDXRmKffGuHoefQeEHRSpX k9WLg46/oqw/cvxOMrHwJRQSj+He7/lPobLSV5NcKpb8ckyD8rn1K0= 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:cc:subject:date:message-id:in-reply-to:references; s= default; bh=eoBdPQCAcn2x07WX28+5q7SC3FI=; b=bm1CYBOUeXkqkVmsniSy qVmlCJdnbpAZ8w8/emvXSQxQL/h5dpKWAcvTkTvAtqeSp2XW0W3cXRUPo9OcvNZw mw2VsZ3JhFnbGqI4SBNpGOPpd/uE3ocvszJySAtsN+QAcLA7wP1xiKOdLRFn6ylP XDApN2EUcRcdfXQj81jKnd0= Received: (qmail 26260 invoked by alias); 2 Apr 2013 15:09:00 -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 26195 invoked by uid 89); 2 Apr 2013 15:08:53 -0000 X-Spam-SWARE-Status: No, score=0.2 required=5.0 tests=AWL, BAYES_50, KHOP_THREADED, RDNS_DYNAMIC autolearn=ham version=3.3.1 Received: from host-82-135-62-35.customer.m-online.net (HELO mail.embedded-brains.de) (82.135.62.35) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Tue, 02 Apr 2013 15:08:51 +0000 Received: by mail.embedded-brains.de (Postfix, from userid 65534) id 1424F652CFD; Tue, 2 Apr 2013 17:08:48 +0200 (CEST) Received: from eb0024.eb.z (eb0024.eb.z [192.168.96.64]) by mail.embedded-brains.de (Postfix) with ESMTP id AA3F9652BD5; Tue, 2 Apr 2013 17:08:48 +0200 (CEST) From: Sebastian Huber To: gcc-patches@gcc.gnu.org Cc: chrisj@rtems.org, Joel.Sherrill@OARcorp.com, Sebastian Huber Subject: [PATCH v2] PR56771: Fix arm-rtems target for 32-bit hosts Date: Tue, 2 Apr 2013 17:08:47 +0200 Message-Id: <1364915327-21605-1-git-send-email-sebastian.huber@embedded-brains.de> In-Reply-To: <1364906462-24607-1-git-send-email-sebastian.huber@embedded-brains.de> References: <1364906462-24607-1-git-send-email-sebastian.huber@embedded-brains.de> This patch is for GCC 4.8 and 4.9. v2: Fix ChangeLog. libcpp/ChangeLog 2013-04-02 Sebastian Huber PR target/56771 * configure.ac: Require 64-bit int for arm*-*-rtems*. * configure: Regenerate. --- libcpp/configure | 1 + libcpp/configure.ac | 1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/libcpp/configure b/libcpp/configure index f21b361..7158186 100755 --- a/libcpp/configure +++ b/libcpp/configure @@ -7153,6 +7153,7 @@ case $target in aarch64*-*-* | \ alpha*-*-* | \ arm*-*-*eabi* | \ + arm*-*-rtems* | \ arm*-*-symbianelf* | \ x86_64-*-* | \ ia64-*-* | \ diff --git a/libcpp/configure.ac b/libcpp/configure.ac index e0c4ae6..43ac9ba 100644 --- a/libcpp/configure.ac +++ b/libcpp/configure.ac @@ -185,6 +185,7 @@ case $target in aarch64*-*-* | \ alpha*-*-* | \ arm*-*-*eabi* | \ + arm*-*-rtems* | \ arm*-*-symbianelf* | \ x86_64-*-* | \ ia64-*-* | \