scripts/build/mpfr.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Feb 07 20:11:13 2009 +0000 (2009-02-07)
changeset 1205 ba2189b34eac
parent 1126 1ab3d2e08c8b
child 1251 2d5bac83fd18
permissions -rw-r--r--
Make MPFR build under Cygwin.

/trunk/scripts/build/mpfr.sh | 24 20 4 0 ++++++++++++++++++++----
1 file changed, 20 insertions(+), 4 deletions(-)
     1 # This file adds the functions to build the MPFR library
     2 # Copyright 2008 Yann E. MORIN
     3 # Licensed under the GPL v2. See COPYING in the root of this package
     4 
     5 do_mpfr_get() { :; }
     6 do_mpfr_extract() { :; }
     7 do_mpfr() { :; }
     8 do_mpfr_target() { :; }
     9 
    10 # Overide function depending on configuration
    11 if [ "${CT_GMP_MPFR}" = "y" ]; then
    12 
    13 # Download MPFR
    14 do_mpfr_get() {
    15     CT_GetFile "mpfr-${CT_MPFR_VERSION}" http://www.mpfr.org/mpfr-current/  \
    16                                  http://www.mpfr.org/mpfr-${CT_MPFR_VERSION}/
    17 }
    18 
    19 # Extract MPFR
    20 do_mpfr_extract() {
    21     CT_Extract "mpfr-${CT_MPFR_VERSION}"
    22     CT_Patch "mpfr-${CT_MPFR_VERSION}"
    23 
    24     # OK, Gentoo have a sanity check that libtool.m4 and ltmain.sh have the
    25     # same version number. Unfortunately, some tarballs of MPFR are not
    26     # built sanely, and thus ./configure fails on Gentoo.
    27     # See: http://sourceware.org/ml/crossgcc/2008-05/msg00080.html
    28     # and: http://sourceware.org/ml/crossgcc/2008-06/msg00005.html
    29     # This hack is not bad per se, but the MPFR guys would be better not to
    30     # do that in the future...
    31     CT_Pushd "${CT_SRC_DIR}/mpfr-${CT_MPFR_VERSION}"
    32     if [ ! -f .autotools.ct-ng ]; then
    33         CT_DoLog DEBUG "Re-building autotools files"
    34         CT_DoExecLog ALL autoreconf -fi
    35         # Starting with libtool-1.9f, config.{guess,sub} are no longer
    36         # installed without -i, but starting with libtool-2.2.6, they
    37         # are no longer removed without -i. Sight... Just use -i with
    38         # libtool >=2
    39         # See: http://sourceware.org/ml/crossgcc/2008-11/msg00046.html
    40         # and: http://sourceware.org/ml/crossgcc/2008-11/msg00048.html
    41         libtoolize_opt=
    42         case "$(libtoolize --version |head -n 1 |gawk '{ print $(NF); }')" in
    43             0.*)    ;;
    44             1.*)    ;;
    45             *)      libtoolize_opt=-i;;
    46         esac
    47         CT_DoExecLog ALL libtoolize -f ${libtoolize_opt}
    48         touch .autotools.ct-ng
    49     fi
    50     CT_Popd
    51 }
    52 
    53 do_mpfr() {
    54     mkdir -p "${CT_BUILD_DIR}/build-mpfr"
    55     cd "${CT_BUILD_DIR}/build-mpfr"
    56 
    57     CT_DoStep INFO "Installing MPFR"
    58 
    59     mpfr_opt=
    60     # Under Cygwin, wa can't bnuild a thread-safe library
    61     case "${CT_HOST}" in
    62         *-cygwin)   mpfr_opt="--disable-thread-safe";;
    63         *)          mpfr_opt="--enable-thread-safe";;
    64     esac
    65 
    66     CT_DoLog EXTRA "Configuring MPFR"
    67     CFLAGS="${CT_CFLAGS_FOR_HOST}"                      \
    68     CT_DoExecLog ALL                                    \
    69     "${CT_SRC_DIR}/mpfr-${CT_MPFR_VERSION}/configure"   \
    70         --build=${CT_BUILD}                             \
    71         --host=${CT_HOST}                               \
    72         --prefix="${CT_PREFIX_DIR}"                     \
    73         ${mpfr_opt}                                     \
    74         --disable-shared                                \
    75         --enable-static                                 \
    76         --with-gmp="${CT_PREFIX_DIR}"
    77 
    78     CT_DoLog EXTRA "Building MPFR"
    79     CT_DoExecLog ALL make ${PARALLELMFLAGS}
    80 
    81     if [ "${CT_MPFR_CHECK}" = "y" ]; then
    82         CT_DoLog EXTRA "Checking MPFR"
    83         CT_DoExecLog ALL make ${PARALLELMFLAGS} -s check
    84     fi
    85 
    86     CT_DoLog EXTRA "Installing MPFR"
    87     CT_DoExecLog ALL make install
    88 
    89     CT_EndStep
    90 }
    91 
    92 if [ "${CT_GMP_MPFR_TARGET}" = "y" ]; then
    93 
    94 do_mpfr_target() {
    95     mkdir -p "${CT_BUILD_DIR}/build-mpfr-target"
    96     cd "${CT_BUILD_DIR}/build-mpfr-target"
    97 
    98     CT_DoStep INFO "Installing MPFR for the target"
    99 
   100     mpfr_opt=
   101     # Under Cygwin, wa can't bnuild a thread-safe library
   102     case "${CT_TARGET}" in
   103         *-cygwin)   mpfr_opt="--disable-thread-safe";;
   104         *)          mpfr_opt="--enable-thread-safe";;
   105     esac
   106 
   107     CT_DoLog EXTRA "Configuring MPFR"
   108     CFLAGS="${CT_CFLAGS_FOR_TARGET}"                    \
   109     CT_DoExecLog ALL                                    \
   110     "${CT_SRC_DIR}/mpfr-${CT_MPFR_VERSION}/configure"   \
   111         --build=${CT_BUILD}                             \
   112         --host=${CT_TARGET}                             \
   113         --prefix=/usr                                   \
   114         ${mpfr_opt}                                     \
   115         --disable-shared                                \
   116         --enable-static                                 \
   117         --with-gmp="${CT_SYSROOT_DIR}/usr"
   118 
   119     CT_DoLog EXTRA "Building MPFR"
   120     CT_DoExecLog ALL make ${PARALLELMFLAGS}
   121 
   122     # Not possible to check MPFR while X-compiling
   123 
   124     CT_DoLog EXTRA "Installing MPFR"
   125     CT_DoExecLog ALL make DESTDIR="${CT_SYSROOT_DIR}" install
   126 
   127     CT_EndStep
   128 }
   129 
   130 fi # CT_GMP_MPFR_TARGET == y
   131 
   132 fi # CT_GMP_MPFR == y