scripts/build/cc/gcc.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Jan 03 21:11:41 2009 +0000 (2009-01-03)
changeset 1112 c72aecd1a9ef
parent 1111 6a077c345cfe
child 1122 796d1143a1dc
permissions -rw-r--r--
Get rid of all stuff related to building a /delivery' traball:
- building a delivery tarball has long been broken (since crostool-Ng is installable)
- get rid of implied do_print_filename, that can be mis-leading now tarballs can not be built

/trunk/scripts/build/kernel/bare-metal.sh | 4 0 4 0 ----
/trunk/scripts/build/kernel/linux.sh | 4 0 4 0 ----
/trunk/scripts/build/tools/000-template.sh | 11 0 11 0 -----------
/trunk/scripts/build/tools/100-libelf.sh | 4 0 4 0 ----
/trunk/scripts/build/tools/200-sstrip.sh | 11 1 10 0 +----------
/trunk/scripts/build/binutils.sh | 4 0 4 0 ----
/trunk/scripts/build/cc/gcc.sh | 5 0 5 0 -----
/trunk/scripts/build/debug/000-template.sh | 11 0 11 0 -----------
/trunk/scripts/build/debug/100-dmalloc.sh | 4 0 4 0 ----
/trunk/scripts/build/debug/400-ltrace.sh | 4 0 4 0 ----
/trunk/scripts/build/debug/300-gdb.sh | 7 0 7 0 -------
/trunk/scripts/build/debug/500-strace.sh | 4 0 4 0 ----
/trunk/scripts/build/debug/200-duma.sh | 4 0 4 0 ----
/trunk/scripts/build/libc/none.sh | 5 0 5 0 -----
/trunk/scripts/build/libc/glibc.sh | 10 0 10 0 ----------
/trunk/scripts/build/libc/uClibc.sh | 6 0 6 0 ------
/trunk/scripts/build/libc/eglibc.sh | 10 0 10 0 ----------
/trunk/scripts/build/gmp.sh | 6 0 6 0 ------
/trunk/scripts/build/mpfr.sh | 6 0 6 0 ------
/trunk/docs/overview.txt | 9 0 9 0 ---------
20 files changed, 1 insertion(+), 128 deletions(-)
     1 # This file adds the function to build the gcc C compiler
     2 # Copyright 2007 Yann E. MORIN
     3 # Licensed under the GPL v2. See COPYING in the root of this package
     4 
     5 # Download gcc
     6 do_cc_get() {
     7     # Ah! gcc folks are kind of 'different': they store the tarballs in
     8     # subdirectories of the same name! That's because gcc is such /crap/ that
     9     # it is such /big/ that it needs being splitted for distribution! Sad. :-(
    10     # Arrgghh! Some of those versions does not follow this convention:
    11     # gcc-3.3.3 lives in releases/gcc-3.3.3, while gcc-2.95.* isn't in a
    12     # subdirectory! You bastard!
    13     CT_GetFile "${CT_CC_FILE}"  \
    14                {ftp,http}://ftp.gnu.org/gnu/gcc{,{,/releases}/${CT_CC_FILE}}
    15 }
    16 
    17 # Extract gcc
    18 do_cc_extract() {
    19     CT_ExtractAndPatch "${CT_CC_FILE}"
    20 }
    21 
    22 #------------------------------------------------------------------------------
    23 # Core gcc pass 1
    24 do_cc_core_pass_1() {
    25     # If we're building for bare metal, build the static core gcc,
    26     # with libgcc.
    27     # In case we're not bare metal, and we're NPTL, build the static core gcc.
    28     # In any other case, do nothing.
    29     case "${CT_BARE_METAL},${CT_THREADS}" in
    30         y,*)    do_cc_core mode=baremetal build_libgcc=yes;;
    31         ,nptl)  do_cc_core mode=static build_libgcc=no;;
    32         *)      ;;
    33     esac
    34 }
    35 
    36 # Core gcc pass 2
    37 do_cc_core_pass_2() {
    38     # In case we're building for bare metal, do nothing, we already have
    39     # our compiler.
    40     # In case we're NPTL, build the shared core gcc and the target libgcc.
    41     # In any other case, build the static core gcc and, if using gcc-4.3+,
    42     # also build the target libgcc.
    43     case "${CT_BARE_METAL},${CT_THREADS}" in
    44         y,*)    ;;
    45         ,nptl)
    46             do_cc_core mode=shared build_libgcc=yes
    47             ;;
    48         *)  if [ "${CT_CC_GCC_4_3_or_later}" = "y" ]; then
    49                 do_cc_core mode=static build_libgcc=yes
    50             else
    51                 do_cc_core mode=static build_libgcc=no
    52             fi
    53             ;;
    54     esac
    55 }
    56 
    57 #------------------------------------------------------------------------------
    58 # Build core gcc
    59 # This function is used to build both the static and the shared core C conpiler,
    60 # with or without the target libgcc. We need to know wether:
    61 #  - we're building static, shared or bare metal: mode=[static|shared|baremetal]
    62 #  - we need to build libgcc or not             : build_libgcc=[yes|no]
    63 # Usage: do_cc_core_static mode=[static|shared|baremetal] build_libgcc=[yes|no]
    64 do_cc_core() {
    65     local mode
    66     local build_libgcc
    67     local core_prefix_dir
    68     local extra_config
    69     local lang_opt
    70 
    71     eval $1
    72     eval $2
    73     CT_TestOrAbort "Internal Error: 'mode' must either 'static', 'shared' or 'baremetal', not '${mode:-(empty)}'" "${mode}" = "static" -o "${mode}" = "shared" -o "${mode}" = "baremetal"
    74     CT_TestOrAbort "Internal Error: 'build_libgcc' must be either 'yes' or 'no', not '${build_libgcc:-(empty)}'" "${build_libgcc}" = "yes" -o "${build_libgcc}" = "no"
    75     # In normal conditions, ( "${mode}" = "shared" ) implies
    76     # ( "${build_libgcc}" = "yes" ), but I won't check for that
    77 
    78     CT_DoStep INFO "Installing ${mode} core C compiler"
    79     mkdir -p "${CT_BUILD_DIR}/build-cc-core-${mode}"
    80     cd "${CT_BUILD_DIR}/build-cc-core-${mode}"
    81 
    82     lang_opt=c
    83     case "${mode}" in
    84         static)
    85             core_prefix_dir="${CT_CC_CORE_STATIC_PREFIX_DIR}"
    86             extra_config="${extra_config} --with-newlib --enable-threads=no --disable-shared"
    87             copy_headers=y
    88             ;;
    89         shared)
    90             core_prefix_dir="${CT_CC_CORE_SHARED_PREFIX_DIR}"
    91             extra_config="${extra_config} --enable-shared"
    92             copy_headers=y
    93             ;;
    94         baremetal)
    95             core_prefix_dir="${CT_PREFIX_DIR}"
    96             extra_config="${extra_config} --with-newlib --enable-threads=no --disable-shared"
    97             [ "${CT_CC_LANG_CXX}" = "y" ] && lang_opt="${lang_opt},c++"
    98             copy_headers=n
    99             ;;
   100     esac
   101 
   102     if [ "${copy_headers}" = "y" ]; then
   103         CT_DoLog DEBUG "Copying headers to install area of bootstrap gcc, so it can build libgcc2"
   104         CT_DoExecLog ALL mkdir -p "${core_prefix_dir}/${CT_TARGET}/include"
   105         CT_DoExecLog ALL cp -r "${CT_HEADERS_DIR}"/* "${core_prefix_dir}/${CT_TARGET}/include"
   106     fi
   107 
   108     CT_DoLog EXTRA "Configuring ${mode} core C compiler"
   109 
   110     extra_config="${extra_config} ${CT_ARCH_WITH_ARCH}"
   111     extra_config="${extra_config} ${CT_ARCH_WITH_ABI}"
   112     extra_config="${extra_config} ${CT_ARCH_WITH_CPU}"
   113     extra_config="${extra_config} ${CT_ARCH_WITH_TUNE}"
   114     extra_config="${extra_config} ${CT_ARCH_WITH_FPU}"
   115     extra_config="${extra_config} ${CT_ARCH_WITH_FLOAT}"
   116     [ "${CT_GMP_MPFR}" = "y" ] && extra_config="${extra_config} --with-gmp=${CT_PREFIX_DIR} --with-mpfr=${CT_PREFIX_DIR}"
   117     if [ "${CT_CC_CXA_ATEXIT}" = "y" ]; then
   118         extra_config="${extra_config} --enable-__cxa_atexit"
   119     else
   120         extra_config="${extra_config} --disable-__cxa_atexit"
   121     fi
   122 
   123     CT_DoLog DEBUG "Extra config passed: '${extra_config}'"
   124 
   125     # Use --with-local-prefix so older gccs don't look in /usr/local (http://gcc.gnu.org/PR10532)
   126     CC_FOR_BUILD="${CT_BUILD}-gcc"                  \
   127     CFLAGS="${CT_CFLAGS_FOR_HOST}"                  \
   128     CT_DoExecLog ALL                                \
   129     "${CT_SRC_DIR}/${CT_CC_FILE}/configure"         \
   130         --build=${CT_BUILD}                         \
   131         --host=${CT_HOST}                           \
   132         --target=${CT_TARGET}                       \
   133         --prefix="${core_prefix_dir}"               \
   134         --with-local-prefix="${CT_SYSROOT_DIR}"     \
   135         --disable-multilib                          \
   136         ${CC_CORE_SYSROOT_ARG}                      \
   137         ${extra_config}                             \
   138         --disable-nls                               \
   139         --enable-symvers=gnu                        \
   140         --enable-languages="${lang_opt}"            \
   141         --enable-target-optspace                    \
   142         ${CT_CC_CORE_EXTRA_CONFIG}
   143 
   144     if [ "${build_libgcc}" = "yes" ]; then
   145         # HACK: we need to override SHLIB_LC from gcc/config/t-slibgcc-elf-ver or
   146         # gcc/config/t-libunwind so -lc is removed from the link for
   147         # libgcc_s.so, as we do not have a target -lc yet.
   148         # This is not as ugly as it appears to be ;-) All symbols get resolved
   149         # during the glibc build, and we provide a proper libgcc_s.so for the
   150         # cross toolchain during the final gcc build.
   151         #
   152         # As we cannot modify the source tree, nor override SHLIB_LC itself
   153         # during configure or make, we have to edit the resultant
   154         # gcc/libgcc.mk itself to remove -lc from the link.
   155         # This causes us to have to jump through some hoops...
   156         #
   157         # To produce libgcc.mk to edit we firstly require libiberty.a,
   158         # so we configure then build it.
   159         # Next we have to configure gcc, create libgcc.mk then edit it...
   160         # So much easier if we just edit the source tree, but hey...
   161         if [ ! -f "${CT_SRC_DIR}/${CT_CC_FILE}/gcc/BASE-VER" ]; then
   162             CT_DoExecLog ALL make configure-libiberty
   163             CT_DoExecLog ALL make ${PARALLELMFLAGS} -C libiberty libiberty.a
   164             CT_DoExecLog ALL make configure-gcc configure-libcpp
   165             CT_DoExecLog ALL make ${PARALLELMFLAGS} all-libcpp
   166         else
   167             CT_DoExecLog ALL make configure-gcc configure-libcpp configure-build-libiberty
   168             CT_DoExecLog ALL make ${PARALLELMFLAGS} all-libcpp all-build-libiberty
   169         fi
   170         # HACK: gcc-4.2 uses libdecnumber to build libgcc.mk, so build it here.
   171         if [ -d "${CT_SRC_DIR}/${CT_CC_FILE}/libdecnumber" ]; then
   172             CT_DoExecLog ALL make configure-libdecnumber
   173             CT_DoExecLog ALL make ${PARALLELMFLAGS} -C libdecnumber libdecnumber.a
   174         fi
   175 
   176         # Starting with GCC 4.3, libgcc.mk is no longer built,
   177         # and libgcc.mvars is used instead.
   178 
   179         if [ "${CT_CC_GCC_4_3_or_later}" = "y" ]; then
   180             libgcc_rule="libgcc.mvars"
   181             build_rules="all-gcc all-target-libgcc"
   182             install_rules="install-gcc install-target-libgcc"
   183         else
   184             libgcc_rule="libgcc.mk"
   185             build_rules="all-gcc"
   186             install_rules="install-gcc"
   187         fi
   188 
   189         CT_DoExecLog ALL make ${PARALLELMFLAGS} -C gcc ${libgcc_rule}
   190         sed -r -i -e 's@-lc@@g' gcc/${libgcc_rule}
   191     else # build_libgcc
   192             build_rules="all-gcc"
   193             install_rules="install-gcc"
   194     fi   # ! build libgcc
   195 
   196     if [ "${CT_CANADIAN}" = "y" ]; then
   197         CT_DoLog EXTRA "Building libiberty"
   198         CT_DoExecLog ALL make ${PARALLELMFLAGS} all-build-libiberty
   199     fi
   200 
   201     CT_DoLog EXTRA "Building ${mode} core C compiler"
   202     CT_DoExecLog ALL make ${PARALLELMFLAGS} ${build_rules}
   203 
   204     CT_DoLog EXTRA "Installing ${mode} core C compiler"
   205     CT_DoExecLog ALL make ${install_rules}
   206 
   207     CT_EndStep
   208 }
   209 
   210 #------------------------------------------------------------------------------
   211 # Build final gcc
   212 do_cc() {
   213     # If building for bare metal, nothing to be done here, the static core conpiler is enough!
   214     [ "${CT_BARE_METAL}" = "y" ] && return 0
   215 
   216     CT_DoStep INFO "Installing final compiler"
   217 
   218     mkdir -p "${CT_BUILD_DIR}/build-cc"
   219     cd "${CT_BUILD_DIR}/build-cc"
   220 
   221     CT_DoLog EXTRA "Configuring final compiler"
   222 
   223     # Enable selected languages
   224     lang_opt="c"
   225     [ "${CT_CC_LANG_CXX}" = "y"      ] && lang_opt="${lang_opt},c++"
   226     [ "${CT_CC_LANG_FORTRAN}" = "y"  ] && lang_opt="${lang_opt},fortran"
   227     [ "${CT_CC_LANG_ADA}" = "y"      ] && lang_opt="${lang_opt},ada"
   228     [ "${CT_CC_LANG_JAVA}" = "y"     ] && lang_opt="${lang_opt},java"
   229     [ "${CT_CC_LANG_OBJC}" = "y"     ] && lang_opt="${lang_opt},objc"
   230     [ "${CT_CC_LANG_OBJCXX}" = "y"   ] && lang_opt="${lang_opt},obj-c++"
   231     CT_Test "Building ADA language is not yet supported. Will try..." "${CT_CC_LANG_ADA}" = "y"
   232     CT_Test "Building Objective-C language is not yet supported. Will try..." "${CT_CC_LANG_OBJC}" = "y"
   233     CT_Test "Building Objective-C++ language is not yet supported. Will try..." "${CT_CC_LANG_OBJCXX}" = "y"
   234     CT_Test "Building ${CT_CC_LANG_OTHERS//,/ } language(s) is not yet supported. Will try..." -n "${CT_CC_LANG_OTHERS}"
   235     lang_opt=$(echo "${lang_opt},${CT_CC_LANG_OTHERS}" |sed -r -e 's/,+/,/g; s/,*$//;')
   236 
   237     extra_config="--enable-languages=${lang_opt}"
   238     extra_config="${extra_config} --disable-multilib"
   239     extra_config="${extra_config} ${CT_ARCH_WITH_ARCH}"
   240     extra_config="${extra_config} ${CT_ARCH_WITH_ABI}"
   241     extra_config="${extra_config} ${CT_ARCH_WITH_CPU}"
   242     extra_config="${extra_config} ${CT_ARCH_WITH_TUNE}"
   243     extra_config="${extra_config} ${CT_ARCH_WITH_FPU}"
   244     extra_config="${extra_config} ${CT_ARCH_WITH_FLOAT}"
   245     [ "${CT_SHARED_LIBS}" = "y" ]                   || extra_config="${extra_config} --disable-shared"
   246     [ "${CT_GMP_MPFR}" = "y" ]                      && extra_config="${extra_config} --with-gmp=${CT_PREFIX_DIR} --with-mpfr=${CT_PREFIX_DIR}"
   247     [ -n "${CT_CC_PKGVERSION}" ]                    && extra_config="${extra_config} --with-pkgversion=${CT_CC_PKGVERSION}"
   248     [ -n "${CT_CC_BUGURL}" ]                        && extra_config="${extra_config} --with-bugurl=${CT_CC_BUGURL}"
   249     [ "${CT_CC_SJLJ_EXCEPTIONS_USE}" = "y" ]        && extra_config="${extra_config} --enable-sjlj-exceptions"
   250     [ "${CT_CC_SJLJ_EXCEPTIONS_DONT_USE}" = "y" ]   && extra_config="${extra_config} --disable-sjlj-exceptions"
   251     if [ "${CT_CC_CXA_ATEXIT}" = "y" ]; then
   252         extra_config="${extra_config} --enable-__cxa_atexit"
   253     else
   254         extra_config="${extra_config} --disable-__cxa_atexit"
   255     fi
   256 
   257     CT_DoLog DEBUG "Extra config passed: '${extra_config}'"
   258 
   259     # --enable-symvers=gnu really only needed for sh4 to work around a
   260     # detection problem only matters for gcc-3.2.x and later, I think.
   261     # --disable-nls to work around crash bug on ppc405, but also because
   262     # embedded systems don't really need message catalogs...
   263     CC_FOR_BUILD="${CT_BUILD}-gcc"              \
   264     CFLAGS="${CT_CFLAGS_FOR_HOST}"              \
   265     CFLAGS_FOR_TARGET="${CT_TARGET_CFLAGS}"     \
   266     CXXFLAGS_FOR_TARGET="${CT_TARGET_CFLAGS}"   \
   267     LDFLAGS_FOR_TARGET="${CT_TARGET_LDFLAGS}"   \
   268     CT_DoExecLog ALL                            \
   269     "${CT_SRC_DIR}/${CT_CC_FILE}/configure"     \
   270         --build=${CT_BUILD}                     \
   271         --host=${CT_HOST}                       \
   272         --target=${CT_TARGET}                   \
   273         --prefix="${CT_PREFIX_DIR}"             \
   274         ${CC_SYSROOT_ARG}                       \
   275         ${extra_config}                         \
   276         --with-local-prefix="${CT_SYSROOT_DIR}" \
   277         --disable-nls                           \
   278         --enable-threads=posix                  \
   279         --enable-symvers=gnu                    \
   280         --enable-c99                            \
   281         --enable-long-long                      \
   282         --enable-target-optspace                \
   283         ${CT_CC_EXTRA_CONFIG}
   284 
   285     if [ "${CT_CANADIAN}" = "y" ]; then
   286         CT_DoLog EXTRA "Building libiberty"
   287         CT_DoExecLog ALL make ${PARALLELMFLAGS} all-build-libiberty
   288     fi
   289 
   290     CT_DoLog EXTRA "Building final compiler"
   291     CT_DoExecLog ALL make ${PARALLELMFLAGS} all
   292 
   293     CT_DoLog EXTRA "Installing final compiler"
   294     CT_DoExecLog ALL make install
   295 
   296     # Create a symlink ${CT_TARGET}-cc to ${CT_TARGET}-gcc to always be able
   297     # to call the C compiler with the same, somewhat canonical name.
   298     CT_DoExecLog ALL ln -sv "${CT_TARGET}"-gcc "${CT_PREFIX_DIR}/bin/${CT_TARGET}"-cc
   299 
   300     CT_EndStep
   301 }