aboutsummaryrefslogtreecommitdiff
path: root/config/elf.m4
diff options
context:
space:
mode:
authortschwinge <tschwinge@138bc75d-0d04-0410-961f-82ee72b054a4>2015-02-18 08:01:03 +0000
committertschwinge <tschwinge@138bc75d-0d04-0410-961f-82ee72b054a4>2015-02-18 08:01:03 +0000
commit0f7695734890f93fe58179e36ac2f41bf4147d78 (patch)
treec92372efa44ffeedf789fa907c0d65fde6047405 /config/elf.m4
parent2fdc66a9fcfbc5b77c1c03d7c34893a0a086e8f8 (diff)
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
Diffstat (limited to 'config/elf.m4')
-rw-r--r--config/elf.m47
1 files changed, 5 insertions, 2 deletions
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
;;
*)