scripts/build/companion_libs/cloog.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Jul 17 22:43:07 2011 +0200 (2011-07-17)
changeset 2893 a8a65758664f
parent 2758 47199f966983
child 2927 ddaae597fd7c
permissions -rw-r--r--
cc/gcc: do not use the core pass-2 to build the baremetal compiler

In case we build a baremetal compiler, use the standard passes:
- core_cc is used to build the C library;
- as such, it is meant to run on build, not host;
- the final compiler is meant to run on host;

As the current final compiler step can not build a baremetal compiler,
call the core backend from the final step.

NB: Currently, newlib is built during the start_files pass, so we have
to have a core compiler by then... Once we can build the baremetal
compiler from the final cc step, then we can move the newlib build to
the proper step, and then get rid of the core pass-1 static compiler...

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     LIBS="-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