scripts/build/companion_libs/cloog.sh
author Michael Hope <michael.hope@linaro.org>
Wed Nov 16 10:06:21 2011 +1300 (2011-11-16)
changeset 2765 6c5658b8b588
parent 2757 f070d922facf
child 2854 a70abdbfa342
permissions -rw-r--r--
scripts: add support for building manuals

Add support for building the HTML and PDF manuals for the major
components. Implement for binutils, GCC, GDB, and GLIBC.

Always build all manuals and install a subset. Be explicit about the
subset to reduce the clutter and to avoid getting copies of common
manuals like bfd from all of the sourceware based components. Downside of
being explicit is that you need to update it when a new component
comes along.

Build the manuals as part of the last GCC build, namely 'cc' for glibc
based ones and cc_core_pass_2 for baremetal.

An example of the output is at:
http://people.linaro.org/~michaelh/incoming/crosstool-NG/

Signed-off-by: Michael Hope <michael.hope@linaro.org>
[yann.morin.1998@anciens.enib.fr: depends on ! remove docs; gold manual install]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
     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_NEEDS_AUTORECONF}" = "y" ]; 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