From 8ae12d71c49023e565ccd0112718cf146c3e871d Mon Sep 17 00:00:00 2001 From: Thomas Schwinge Date: Wed, 18 Feb 2015 09:01:03 +0100 Subject: [PATCH] nvptx-none: Disable the lto-plugin. config/ * elf.m4 (ACX_ELF_TARGET_IFELSE): nvptx-*-none isn't ELF. / * configure: Regenerate. From-SVN: r220781 --- ChangeLog | 4 ++++ config/ChangeLog | 4 ++++ config/elf.m4 | 7 +++++-- configure | 3 ++- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0969af5a3bf..a9e4437a871 100644 --- a/ChangeLog +++ b/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 a/config/ChangeLog b/config/ChangeLog index 2cbc8857c65..c9ed12136d1 100644 --- a/config/ChangeLog +++ b/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 a/config/elf.m4 b/config/elf.m4 index da051cbe61c..1772a44318e 100644 --- a/config/elf.m4 +++ b/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 a/configure b/configure index dd794dbe462..f20a6abb845 100755 --- a/configure +++ b/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 ;; *)