scripts/build/companion_libs/cloog.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Oct 16 14:58:29 2011 +0200 (2011-10-16)
branch1.13
changeset 2766 2bc7bf81295a
parent 2704 fcf5c43cf30f
child 2758 47199f966983
permissions -rw-r--r--
complibs/cloog: fix extraction

In the early days, cloog-ppl was bizarrely packaged: the first tarball
did not contain the version in the name of the extracted directory, so
we had to play tricks.

Nowadays, however, the first component of the path are stripped when
extracting a tarball, which means that the created directory will
always be properly named. So, our old tricks do no longer work, and
worse, they break the build.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
(transplanted from f070d922facf42b0395b7db909e1867d45b245dd)
     1 # This file adds the functions to build the CLooG library
     2 # Copyright 2009 Yann E. MORIN
     3 # Licensed under the GPL v2. See COPYING in the root of this package
     4 
     5 do_cloog_get() { :; }
     6 do_cloog_extract() { :; }
     7 do_cloog() { :; }
     8 
     9 # Overide functions depending on configuration
    10 if [ "${CT_CLOOG}" = "y" ]; then
    11 
    12 # Download CLooG
    13 do_cloog_get() {
    14     CT_GetFile "cloog-ppl-${CT_CLOOG_VERSION}"  \
    15         ftp://gcc.gnu.org/pub/gcc/infrastructure
    16 }
    17 
    18 # Extract CLooG
    19 do_cloog_extract() {
    20     local _t
    21 
    22     # Version 0.15.3 has a dirname 'cloog-ppl' (with no version in it!)
    23     # while versions 0.15.4 onward do have the version in the dirname.
    24     # But, because the infrastructure properly creates the extracted
    25     # directories (with tar's --strip-components), we can live safely...
    26     CT_Extract "cloog-ppl-${CT_CLOOG_VERSION}"
    27     CT_Patch "cloog-ppl" "${CT_CLOOG_VERSION}"
    28 
    29     if [ "${CT_CLOOG_VERSION}" = "0.15.10" ]; then
    30         CT_Pushd "${CT_SRC_DIR}/cloog-ppl-${CT_CLOOG_VERSION}"
    31         CT_DoExecLog CFG ./autogen.sh
    32         CT_Popd
    33     fi
    34 }
    35 
    36 do_cloog() {
    37     local cloog_src_dir="${CT_SRC_DIR}/cloog-ppl-${CT_CLOOG_VERSION}"
    38 
    39     mkdir -p "${CT_BUILD_DIR}/build-cloog-ppl"
    40     cd "${CT_BUILD_DIR}/build-cloog-ppl"
    41 
    42     CT_DoStep INFO "Installing CLooG/ppl"
    43 
    44     CT_DoLog EXTRA "Configuring CLooG/ppl"
    45 
    46     CT_DoExecLog CFG                            \
    47     CFLAGS="${CT_CFLAGS_FOR_HOST}"              \
    48     LDFLAGS="-lm"                               \
    49     "${cloog_src_dir}/configure"                \
    50         --build=${CT_BUILD}                     \
    51         --host=${CT_HOST}                       \
    52         --prefix="${CT_COMPLIBS_DIR}"           \
    53         --with-gmp="${CT_COMPLIBS_DIR}"         \
    54         --with-ppl="${CT_COMPLIBS_DIR}"         \
    55         --with-bits=gmp                         \
    56         --with-host-libstdcxx='-lstdc++'        \
    57         --disable-shared                        \
    58         --enable-static
    59 
    60     CT_DoLog EXTRA "Building CLooG/ppl"
    61     CT_DoExecLog ALL make ${JOBSFLAGS} libcloog.la
    62 
    63     if [ "${CT_COMPLIBS_CHECK}" = "y" ]; then
    64         CT_DoLog EXTRA "Checking CLooG/ppl"
    65         CT_DoExecLog ALL make ${JOBSFLAGS} -s check
    66     fi
    67 
    68     CT_DoLog EXTRA "Installing CLooG/ppl"
    69     CT_DoExecLog ALL make install-libLTLIBRARIES install-pkgincludeHEADERS
    70 
    71     CT_EndStep
    72 }
    73 
    74 fi # CT_CLOOG