diff options
author | Sandra Loosemore <sandra@codesourcery.com> | 2014-05-14 16:27:14 -0700 |
---|---|---|
committer | Sandra Loosemore <sandra@codesourcery.com> | 2014-05-14 16:27:14 -0700 |
commit | d9e042ac0bc08b6c3890cc53cbd43c73c522e720 (patch) | |
tree | bb9ef2254ab8dd552f1fd953f5e88ba6df46f55c | |
parent | reindent print_macro_definition (diff) | |
download | binutils-gdb-d9e042ac0bc08b6c3890cc53cbd43c73c522e720.tar.gz binutils-gdb-d9e042ac0bc08b6c3890cc53cbd43c73c522e720.tar.bz2 binutils-gdb-d9e042ac0bc08b6c3890cc53cbd43c73c522e720.zip |
Sync nios2 configure changes from GCC mainline.
2014-05-14 Sandra Loosemore <sandra@codesourcery.com>
* configure.ac (target_makefile_frag): Set for nios2-*-elf*.
* configure: Regenerated.
config/
* mt-nios2-elf: New file.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | config/ChangeLog | 4 | ||||
-rw-r--r-- | config/mt-nios2-elf | 5 | ||||
-rwxr-xr-x | configure | 3 | ||||
-rw-r--r-- | configure.ac | 3 |
5 files changed, 20 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index e3cd1d80e69..dcf12bb273e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2014-05-14 Sandra Loosemore <sandra@codesourcery.com> + + * configure.ac (target_makefile_frag): Set for nios2-*-elf*. + * configure: Regenerated. + 2014-03-26 Jakub Jelinek <jakub@redhat.com> PR sanitizer/56781 diff --git a/config/ChangeLog b/config/ChangeLog index 885e067853d..8212c31bb01 100644 --- a/config/ChangeLog +++ b/config/ChangeLog @@ -1,3 +1,7 @@ +2014-05-14 Sandra Loosemore <sandra@codesourcery.com> + + * mt-nios2-elf: New file. + 2013-12-07 Mike Frysinger <vapier@gentoo.org> * acinclude.m4: Remove +x file mode. diff --git a/config/mt-nios2-elf b/config/mt-nios2-elf new file mode 100644 index 00000000000..1dee7c6439e --- /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 3f217a2eeab..36455713f33 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 3c7b1ffac3a..07c3a66dd6d 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" ;; |