From: Sandra Loosemore Date: Wed, 14 May 2014 23:20:59 +0000 (-0400) Subject: configure.ac (target_makefile_frag): Set for nios2-*-elf*. X-Git-Tag: releases/gcc-5.1.0~7571 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=707f18393ac81938e72cc4a44e0dcff6b7bef617;p=thirdparty%2Fgcc.git configure.ac (target_makefile_frag): Set for nios2-*-elf*. 2014-05-14 Sandra Loosemore * configure.ac (target_makefile_frag): Set for nios2-*-elf*. * configure: Regenerated. config/ * mt-nios2-elf: New file. From-SVN: r210451 --- diff --git a/ChangeLog b/ChangeLog index a5ecacc3a49e..14a777fc5766 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2014-05-14 Sandra Loosemore + + * configure.ac (target_makefile_frag): Set for nios2-*-elf*. + * configure: Regenerated. + 2014-05-15 Torvald Riegel * MAINTAINERS (libitm): Add myself as maintainer. diff --git a/config/ChangeLog b/config/ChangeLog index f4152c4ebffc..1079c7fb6fc1 100644 --- a/config/ChangeLog +++ b/config/ChangeLog @@ -1,3 +1,7 @@ +2014-05-14 Sandra Loosemore + + * mt-nios2-elf: New file. + 2014-04-25 Marc Glisse PR target/43538 diff --git a/config/mt-nios2-elf b/config/mt-nios2-elf new file mode 100644 index 000000000000..1dee7c6439ee --- /dev/null +++ b/config/mt-nios2-elf @@ -0,0 +1,5 @@ +# We build library code with -mno-gpopt so that it can be linked with +# larger executables with small-data sections that exceed the 16-bit +# offset range for GP-relative addressing. +CFLAGS_FOR_TARGET += -mno-gpopt +CXXFLAGS_FOR_TARGET += -mno-gpopt diff --git a/configure b/configure index 3f217a2eeabf..36455713f33d 100755 --- a/configure +++ b/configure @@ -6992,6 +6992,9 @@ case "${target}" in mips*-*-*linux* | mips*-*-gnu*) target_makefile_frag="config/mt-mips-gnu" ;; + nios2-*-elf*) + target_makefile_frag="config/mt-nios2-elf" + ;; *-*-linux* | *-*-gnu* | *-*-k*bsd*-gnu | *-*-kopensolaris*-gnu) target_makefile_frag="config/mt-gnu" ;; diff --git a/configure.ac b/configure.ac index 3c7b1ffac3ae..07c3a66dd6d7 100644 --- a/configure.ac +++ b/configure.ac @@ -2370,6 +2370,9 @@ case "${target}" in mips*-*-*linux* | mips*-*-gnu*) target_makefile_frag="config/mt-mips-gnu" ;; + nios2-*-elf*) + target_makefile_frag="config/mt-nios2-elf" + ;; *-*-linux* | *-*-gnu* | *-*-k*bsd*-gnu | *-*-kopensolaris*-gnu) target_makefile_frag="config/mt-gnu" ;;