diff options
author | Alan Modra <amodra@gcc.gnu.org> | 2017-01-04 18:59:34 +1030 |
---|---|---|
committer | Alan Modra <amodra@gcc.gnu.org> | 2017-01-04 18:59:34 +1030 |
commit | 8f56cb5163063ec7871db11c52c700065886d448 (patch) | |
tree | d64385dd42f77b6372a670f9ce751385991012d5 /libgcc | |
parent | 4567f969b29aeeb2877d23ee08133f09dbada93d (diff) | |
download | gcc-8f56cb5163063ec7871db11c52c700065886d448.zip gcc-8f56cb5163063ec7871db11c52c700065886d448.tar.gz gcc-8f56cb5163063ec7871db11c52c700065886d448.tar.bz2 |
Update configure deps, remove stray \xA0 in picflag.m4, regenerate
Also fix a stray changelog entry. Some of the regen here is due to
previous changes not being regenerated properly, in part due to the
missing configure dependencies.
* configure: Regenerate.
config/
* picflag.m4: Remove stray \xA0 in comment.
gcc/
* Makefile.in (aclocal_deps): Update and order as per aclocal.m4.
* configure: Regenerate.
* config.in: Regenerate.
libada/
* Makefile.in (configure_deps): Update and order as per
configure.ac sinclude.
* configure: Regenerate.
libgcc/
* Makefile.in (configure_deps): Update.
* configure: Regenerate.
libiberty/
* Makefile.in (configure_deps): Update.
* configure: Regenerate.
libitm/
* Makefile.in: Regenerate.
* testsuite/Makefile.in: Regenerate.
From-SVN: r244049
Diffstat (limited to 'libgcc')
-rw-r--r-- | libgcc/ChangeLog | 5 | ||||
-rw-r--r-- | libgcc/Makefile.in | 5 | ||||
-rw-r--r-- | libgcc/configure | 9 |
3 files changed, 17 insertions, 2 deletions
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog index e3a7e5d..45e5c4e 100644 --- a/libgcc/ChangeLog +++ b/libgcc/ChangeLog @@ -1,3 +1,8 @@ +2017-01-04 Alan Modra <amodra@gmail.com> + + * Makefile.in (configure_deps): Update. + * configure: Regenerate. + 2017-01-01 Jakub Jelinek <jakub@redhat.com> Update copyright years. diff --git a/libgcc/Makefile.in b/libgcc/Makefile.in index 195c79d..ff48b68 100644 --- a/libgcc/Makefile.in +++ b/libgcc/Makefile.in @@ -165,8 +165,13 @@ configure_deps = \ $(srcdir)/../config/tls.m4 \ $(srcdir)/../config/acx.m4 \ $(srcdir)/../config/no-executables.m4 \ + $(srcdir)/../config/lib-ld.m4 \ $(srcdir)/../config/override.m4 \ + $(srcdir)/../config/picflag.m4 \ $(srcdir)/../config/dfp.m4 \ + $(srcdir)/../config/unwind_ipinfo.m4 \ + $(srcdir)/../config/gthr.m4 \ + $(srcdir)/../config/sjlj.m4 $(srcdir)/configure: @MAINT@ $(srcdir)/configure.ac $(configure_deps) cd $(srcdir) && $(AUTOCONF) diff --git a/libgcc/configure b/libgcc/configure index 4fcdca6..3c0af1c 100644 --- a/libgcc/configure +++ b/libgcc/configure @@ -2309,7 +2309,7 @@ case "${host}" in # If we are using a compiler supporting mdynamic-no-pic # and the option has been tested as safe to add, then cancel # it here, since the code generated is incompatible with shared - # libs. + # libs. *-mdynamic-no-pic*) PICFLAG='-fno-common -mno-dynamic-no-pic' ;; *) PICFLAG=-fno-common ;; esac @@ -2324,6 +2324,10 @@ case "${host}" in ;; i[34567]86-*-mingw* | x86_64-*-mingw*) ;; + i[34567]86-*-interix[3-9]*) + # Interix 3.x gcc -fpic/-fPIC options generate broken code. + # Instead, we relocate shared libraries at runtime. + ;; i[34567]86-*-nto-qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. @@ -2354,7 +2358,8 @@ case "${host}" in PICFLAG=-fpic ;; # FIXME: Simplify to sh*-*-netbsd*? - sh-*-netbsdelf* | shl*-*-netbsdelf*) + sh-*-netbsdelf* | shl*-*-netbsdelf* | sh5-*-netbsd* | sh5l*-*-netbsd* | \ + sh64-*-netbsd* | sh64l*-*-netbsd*) PICFLAG=-fpic ;; # Default to -fPIC unless specified otherwise. |