Skip to content

Commit

Permalink
Merge tag 'gcc-4_9_3-release' into or1k
Browse files Browse the repository at this point in the history
  • Loading branch information
wallento committed Mar 18, 2016
2 parents 80794b7 + 876d41e commit 8b7bdf1
Show file tree
Hide file tree
Showing 821 changed files with 22,537 additions and 3,936 deletions.
16 changes: 16 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
2015-06-26 Release Manager

* GCC 4.9.3 released.

2015-05-03 Matthias Klose <[email protected]>

* configure.ac: Match $host configured with triplets.
* configure: Regenerate.

2014-12-04 Tobias Burnus <[email protected]>

* configure.ac: Permit also ISL 0.14 with CLooG.
* Makefile.def: Make more dependent on mpfr, mpc, isl, and cloog.
* Makefile.in: Regenerate.
* configure: Regenerate.

2014-10-30 Release Manager

* GCC 4.9.2 released.
Expand Down
4 changes: 4 additions & 0 deletions Makefile.def
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,10 @@ dependencies = { module=all-build-fixincludes; on=all-build-libiberty; };
// Host modules specific to gcc.
dependencies = { module=configure-gcc; on=configure-intl; };
dependencies = { module=configure-gcc; on=all-gmp; };
dependencies = { module=configure-gcc; on=all-mpfr; };
dependencies = { module=configure-gcc; on=all-mpc; };
dependencies = { module=configure-gcc; on=all-isl; };
dependencies = { module=configure-gcc; on=all-cloog; };
dependencies = { module=configure-gcc; on=all-lto-plugin; };
dependencies = { module=configure-gcc; on=all-binutils; };
dependencies = { module=configure-gcc; on=all-gas; };
Expand Down
32 changes: 32 additions & 0 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -46988,6 +46988,38 @@ configure-stage3-gcc: maybe-all-stage3-gmp
configure-stage4-gcc: maybe-all-stage4-gmp
configure-stageprofile-gcc: maybe-all-stageprofile-gmp
configure-stagefeedback-gcc: maybe-all-stagefeedback-gmp
configure-gcc: maybe-all-mpfr

configure-stage1-gcc: maybe-all-stage1-mpfr
configure-stage2-gcc: maybe-all-stage2-mpfr
configure-stage3-gcc: maybe-all-stage3-mpfr
configure-stage4-gcc: maybe-all-stage4-mpfr
configure-stageprofile-gcc: maybe-all-stageprofile-mpfr
configure-stagefeedback-gcc: maybe-all-stagefeedback-mpfr
configure-gcc: maybe-all-mpc

configure-stage1-gcc: maybe-all-stage1-mpc
configure-stage2-gcc: maybe-all-stage2-mpc
configure-stage3-gcc: maybe-all-stage3-mpc
configure-stage4-gcc: maybe-all-stage4-mpc
configure-stageprofile-gcc: maybe-all-stageprofile-mpc
configure-stagefeedback-gcc: maybe-all-stagefeedback-mpc
configure-gcc: maybe-all-isl

configure-stage1-gcc: maybe-all-stage1-isl
configure-stage2-gcc: maybe-all-stage2-isl
configure-stage3-gcc: maybe-all-stage3-isl
configure-stage4-gcc: maybe-all-stage4-isl
configure-stageprofile-gcc: maybe-all-stageprofile-isl
configure-stagefeedback-gcc: maybe-all-stagefeedback-isl
configure-gcc: maybe-all-cloog

configure-stage1-gcc: maybe-all-stage1-cloog
configure-stage2-gcc: maybe-all-stage2-cloog
configure-stage3-gcc: maybe-all-stage3-cloog
configure-stage4-gcc: maybe-all-stage4-cloog
configure-stageprofile-gcc: maybe-all-stageprofile-cloog
configure-stagefeedback-gcc: maybe-all-stagefeedback-cloog
configure-gcc: maybe-all-lto-plugin

configure-stage1-gcc: maybe-all-stage1-lto-plugin
Expand Down
4 changes: 4 additions & 0 deletions boehm-gc/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2015-06-26 Release Manager

* GCC 4.9.3 released.

2014-10-30 Release Manager

* GCC 4.9.2 released.
Expand Down
4 changes: 4 additions & 0 deletions config/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2015-06-26 Release Manager

* GCC 4.9.3 released.

2014-10-30 Release Manager

* GCC 4.9.2 released.
Expand Down
51 changes: 50 additions & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -3868,7 +3868,7 @@ fi
*-mingw*)
host_makefile_frag="config/mh-mingw"
;;
alpha*-*-linux*)
alpha*-linux*)
host_makefile_frag="config/mh-alpha-linux"
;;
hppa*-hp-hpux10*)
Expand Down Expand Up @@ -6024,6 +6024,55 @@ $as_echo "$gcc_cv_isl" >&6; }
fi


if test "${gcc_cv_isl}" = no ; then

if test "${ENABLE_ISL_CHECK}" = yes ; then
_isl_saved_CFLAGS=$CFLAGS
_isl_saved_LDFLAGS=$LDFLAGS
_isl_saved_LIBS=$LIBS

CFLAGS="${_isl_saved_CFLAGS} ${islinc} ${gmpinc}"
LDFLAGS="${_isl_saved_LDFLAGS} ${isllibs}"
LIBS="${_isl_saved_LIBS} -lisl"

{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for version 0.14 of ISL" >&5
$as_echo_n "checking for version 0.14 of ISL... " >&6; }
if test "$cross_compiling" = yes; then :
gcc_cv_isl=yes
else
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
#include <isl/version.h>
#include <string.h>
int
main ()
{
if (strncmp (isl_version (), "isl-0.14", strlen ("isl-0.14")) != 0)
return 1;
;
return 0;
}
_ACEOF
if ac_fn_c_try_run "$LINENO"; then :
gcc_cv_isl=yes
else
gcc_cv_isl=no
fi
rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
conftest.$ac_objext conftest.beam conftest.$ac_ext
fi

{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gcc_cv_isl" >&5
$as_echo "$gcc_cv_isl" >&6; }

CFLAGS=$_isl_saved_CFLAGS
LDFLAGS=$_isl_saved_LDFLAGS
LIBS=$_isl_saved_LIBS
fi


fi
fi
fi

Expand Down
5 changes: 4 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -1177,7 +1177,7 @@ case "${host}" in
*-mingw*)
host_makefile_frag="config/mh-mingw"
;;
alpha*-*-linux*)
alpha*-linux*)
host_makefile_frag="config/mh-alpha-linux"
;;
hppa*-hp-hpux10*)
Expand Down Expand Up @@ -1658,6 +1658,9 @@ if test "x$with_isl" != "xno" &&
ISL_CHECK_VERSION(0,11)
if test "${gcc_cv_isl}" = no ; then
ISL_CHECK_VERSION(0,12)
if test "${gcc_cv_isl}" = no ; then
ISL_CHECK_VERSION(0,14)
fi
fi
fi
dnl Only execute fail-action, if ISL has been requested.
Expand Down
4 changes: 4 additions & 0 deletions contrib/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2015-06-26 Release Manager

* GCC 4.9.3 released.

2014-10-30 Release Manager

* GCC 4.9.2 released.
Expand Down
4 changes: 4 additions & 0 deletions contrib/reghunt/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2015-06-26 Release Manager

* GCC 4.9.3 released.

2014-10-30 Release Manager

* GCC 4.9.2 released.
Expand Down
4 changes: 4 additions & 0 deletions contrib/regression/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2015-06-26 Release Manager

* GCC 4.9.3 released.

2014-10-30 Release Manager

* GCC 4.9.2 released.
Expand Down
4 changes: 4 additions & 0 deletions fixincludes/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2015-06-26 Release Manager

* GCC 4.9.3 released.

2014-10-30 Release Manager

* GCC 4.9.2 released.
Expand Down
2 changes: 1 addition & 1 deletion gcc/BASE-VER
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.9.2
4.9.3
Loading

0 comments on commit 8b7bdf1

Please sign in to comment.