From patchwork Wed Feb 18 08:01:39 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Thomas Schwinge X-Patchwork-Id: 440814 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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id BE148140146 for ; Wed, 18 Feb 2015 19:02:02 +1100 (AEDT) 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:in-reply-to:references:date:message-id :mime-version:content-type; q=dns; s=default; b=DcPXJR7gj6yYCbMq x1KwkFYXhZGCTPXEkTvmMmWLi4dxKs4HWnijhaoLo9GITvIewUUzw9hHKl+mNPID LxrB38HYI5Fquh8Q66M/DXN+kOvaCVxY1IeBcvN+6O6AoYz8jJfwSKBCDILJR9qp WygNdPHt5cIPve7RGp8HQNZA5nw= 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:in-reply-to:references:date:message-id :mime-version:content-type; s=default; bh=P1Q5w/yUndlVOlLpMBQNI8 5xN1A=; b=fbJ1EaB1GDs3uj+0D7/MpPeN2ng6dQja3YISJPVs9kOYzz+IyJsjqQ pyoK/2Q61X92ESooRnWgl6nNUmClKw53i16y3vnhqQKm0j0aiGUMiZJUksqQ1qPa P/VGRSPF8uAJ1OKyHrVqz8x5b4EcrF5TEkZdUIYA3EesKFmT6FhgI= Received: (qmail 26014 invoked by alias); 18 Feb 2015 08:01:55 -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 26004 invoked by uid 89); 18 Feb 2015 08:01:54 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.3 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 X-HELO: relay1.mentorg.com Received: from relay1.mentorg.com (HELO relay1.mentorg.com) (192.94.38.131) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 18 Feb 2015 08:01:52 +0000 Received: from nat-ies.mentorg.com ([192.94.31.2] helo=SVR-IES-FEM-01.mgc.mentorg.com) by relay1.mentorg.com with esmtp id 1YNzZs-0004xA-Po from Thomas_Schwinge@mentor.com for gcc-patches@gcc.gnu.org; Wed, 18 Feb 2015 00:01:49 -0800 Received: from feldtkeller.schwinge.homeip.net (137.202.0.76) by SVR-IES-FEM-01.mgc.mentorg.com (137.202.0.104) with Microsoft SMTP Server id 14.3.224.2; Wed, 18 Feb 2015 08:01:47 +0000 From: Thomas Schwinge To: GCC Patches CC: Bernd Schmidt Subject: Re: The nvptx port [0/11+] In-Reply-To: <54451994.9070209@codesourcery.com> References: <54451994.9070209@codesourcery.com> User-Agent: Notmuch/0.9-101-g81dad07 (http://notmuchmail.org) Emacs/24.4.1 (i586-pc-linux-gnu) Date: Wed, 18 Feb 2015 09:01:39 +0100 Message-ID: <87k2zffy1o.fsf@kepler.schwinge.homeip.net> MIME-Version: 1.0 Hi! On Mon, 20 Oct 2014 16:17:56 +0200, Bernd Schmidt wrote: > This is a patch kit that adds the nvptx port to gcc. Committed to trunk in r220781: commit 0f7695734890f93fe58179e36ac2f41bf4147d78 Author: tschwinge Date: Wed Feb 18 08:01:03 2015 +0000 nvptx-none: Disable the lto-plugin. config/ * elf.m4 (ACX_ELF_TARGET_IFELSE): nvptx-*-none isn't ELF. / * configure: Regenerate. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@220781 138bc75d-0d04-0410-961f-82ee72b054a4 --- ChangeLog | 4 ++++ config/ChangeLog | 4 ++++ config/elf.m4 | 7 +++++-- configure | 3 ++- 4 files changed, 15 insertions(+), 3 deletions(-) Grüße, Thomas diff --git ChangeLog ChangeLog index 0969af5..a9e4437 100644 --- ChangeLog +++ ChangeLog @@ -1,3 +1,7 @@ +2015-02-18 Thomas Schwinge + + * configure: Regenerate. + 2015-02-06 Diego Novillo * MAINTAINERS (Global Reviewers, Plugin, LTO, tree-ssa, diff --git config/ChangeLog config/ChangeLog index 2cbc885..c9ed121 100644 --- config/ChangeLog +++ config/ChangeLog @@ -1,3 +1,7 @@ +2015-02-18 Thomas Schwinge + + * elf.m4 (ACX_ELF_TARGET_IFELSE): nvptx-*-none isn't ELF. + 2014-11-17 Bob Dunlop * mt-ospace (CFLAGS_FOR_TARGET): Append -g -Os rather than diff --git config/elf.m4 config/elf.m4 index da051cb..1772a44 100644 --- config/elf.m4 +++ config/elf.m4 @@ -1,4 +1,4 @@ -dnl Copyright (C) 2010, 2011 Free Software Foundation, Inc. +dnl Copyright (C) 2010, 2011, 2015 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program @@ -7,6 +7,8 @@ dnl the same distribution terms as the rest of that program. dnl From Paolo Bonzini. +dnl Is this an ELF target supporting the LTO plugin? + dnl usage: ACX_ELF_TARGET_IFELSE([if-elf], [if-not-elf]) AC_DEFUN([ACX_ELF_TARGET_IFELSE], [ AC_REQUIRE([AC_CANONICAL_TARGET]) @@ -15,7 +17,8 @@ target_elf=no case $target in *-darwin* | *-aix* | *-cygwin* | *-mingw* | *-aout* | *-*coff* | \ *-msdosdjgpp* | *-vms* | *-wince* | *-*-pe* | \ - alpha*-dec-osf* | *-interix* | hppa[[12]]*-*-hpux*) + alpha*-dec-osf* | *-interix* | hppa[[12]]*-*-hpux* | \ + nvptx-*-none) target_elf=no ;; *) diff --git configure configure index dd794db..f20a6ab 100755 --- configure +++ configure @@ -6047,7 +6047,8 @@ target_elf=no case $target in *-darwin* | *-aix* | *-cygwin* | *-mingw* | *-aout* | *-*coff* | \ *-msdosdjgpp* | *-vms* | *-wince* | *-*-pe* | \ - alpha*-dec-osf* | *-interix* | hppa[12]*-*-hpux*) + alpha*-dec-osf* | *-interix* | hppa[12]*-*-hpux* | \ + nvptx-*-none) target_elf=no ;; *)