mirror of git://gcc.gnu.org/git/gcc.git
configure.ac: Update minimum MPC version to 0.8.
* configure.ac: Update minimum MPC version to 0.8. * configure: Regenerate. gcc: * doc/install.texi: Update minimum MPC version to 0.8. From-SVN: r154750
This commit is contained in:
parent
78b3c19774
commit
360d4522c4
|
@ -1,3 +1,8 @@
|
||||||
|
2009-11-30 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
|
||||||
|
|
||||||
|
* configure.ac: Update minimum MPC version to 0.8.
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2009-11-21 Sebastian Pop <sebpop@gmail.com>
|
2009-11-21 Sebastian Pop <sebpop@gmail.com>
|
||||||
|
|
||||||
* configure.ac: Check for version 0.15.5 or later revision of CLooG.
|
* configure.ac: Check for version 0.15.5 or later revision of CLooG.
|
||||||
|
|
|
@ -5530,7 +5530,7 @@ int
|
||||||
main ()
|
main ()
|
||||||
{
|
{
|
||||||
|
|
||||||
#if MPC_VERSION < MPC_VERSION_NUM (0,7,0)
|
#if MPC_VERSION < MPC_VERSION_NUM (0,8,0)
|
||||||
choke me
|
choke me
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -5615,6 +5615,7 @@ main ()
|
||||||
mpc_neg (n, n, MPC_RNDNN);
|
mpc_neg (n, n, MPC_RNDNN);
|
||||||
mpc_sqr (n, n, MPC_RNDNN);
|
mpc_sqr (n, n, MPC_RNDNN);
|
||||||
mpc_pow (n, n, n, MPC_RNDNN);
|
mpc_pow (n, n, n, MPC_RNDNN);
|
||||||
|
mpc_acosh (n, n, MPC_RNDNN);
|
||||||
mpc_clear (n);
|
mpc_clear (n);
|
||||||
|
|
||||||
;
|
;
|
||||||
|
|
|
@ -1367,7 +1367,7 @@ if test -d ${srcdir}/gcc && test "x$have_gmp" = xno; then
|
||||||
CFLAGS="$CFLAGS $mpcinc"
|
CFLAGS="$CFLAGS $mpcinc"
|
||||||
AC_MSG_CHECKING([for the correct version of mpc.h])
|
AC_MSG_CHECKING([for the correct version of mpc.h])
|
||||||
AC_TRY_COMPILE([#include <mpc.h>],[
|
AC_TRY_COMPILE([#include <mpc.h>],[
|
||||||
#if MPC_VERSION < MPC_VERSION_NUM (0,7,0)
|
#if MPC_VERSION < MPC_VERSION_NUM (0,8,0)
|
||||||
choke me
|
choke me
|
||||||
#endif
|
#endif
|
||||||
], [AC_MSG_RESULT([yes]); have_mpc=maybe],
|
], [AC_MSG_RESULT([yes]); have_mpc=maybe],
|
||||||
|
@ -1414,6 +1414,7 @@ if test -d ${srcdir}/gcc && test "x$have_gmp" = xno; then
|
||||||
mpc_neg (n, n, MPC_RNDNN);
|
mpc_neg (n, n, MPC_RNDNN);
|
||||||
mpc_sqr (n, n, MPC_RNDNN);
|
mpc_sqr (n, n, MPC_RNDNN);
|
||||||
mpc_pow (n, n, n, MPC_RNDNN);
|
mpc_pow (n, n, n, MPC_RNDNN);
|
||||||
|
mpc_acosh (n, n, MPC_RNDNN);
|
||||||
mpc_clear (n);
|
mpc_clear (n);
|
||||||
], [AC_MSG_RESULT([yes]); have_mpc=yes],
|
], [AC_MSG_RESULT([yes]); have_mpc=yes],
|
||||||
[AC_MSG_RESULT([no]); have_mpc=no; mpclibs= ; mpcinc= ])
|
[AC_MSG_RESULT([no]); have_mpc=no; mpclibs= ; mpcinc= ])
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
2009-11-30 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
|
||||||
|
|
||||||
|
* doc/install.texi: Update minimum MPC version to 0.8.
|
||||||
|
|
||||||
2009-09-09 Segher Boessenkool <segher@kernel.crashing.org>
|
2009-09-09 Segher Boessenkool <segher@kernel.crashing.org>
|
||||||
|
|
||||||
* config/rs6000/rs6000.md (fnmaddsf4_powerpc_1): Remove
|
* config/rs6000/rs6000.md (fnmaddsf4_powerpc_1): Remove
|
||||||
|
|
|
@ -344,7 +344,7 @@ not installed in your default library search path.
|
||||||
|
|
||||||
Necessary to build libgcj, the GCJ runtime.
|
Necessary to build libgcj, the GCJ runtime.
|
||||||
|
|
||||||
@item MPC Library version 0.7.0 (or later)
|
@item MPC Library version 0.8.0 (or later)
|
||||||
|
|
||||||
Optional when building GCC@. Having this library will enable
|
Optional when building GCC@. Having this library will enable
|
||||||
additional optimizations on complex numbers. It can be downloaded
|
additional optimizations on complex numbers. It can be downloaded
|
||||||
|
|
Loading…
Reference in New Issue