scripts/build/cc/gcc.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Jan 05 23:02:43 2009 +0000 (2009-01-05)
changeset 1126 1ab3d2e08c8b
parent 1122 796d1143a1dc
child 1129 cf598d70f6ea
permissions -rw-r--r--
Split CT_ExtractAndPatch in two: CT_Extract and CT_Patch:
- it is unworkable to have CT_ExtactAndPAtch cope with all those silly glibc addons:
- they can have 'short' (as 'ports') or 'long' (as glibc-ports-2.7) names
- patches are against eithe the short or long name, but non-uniformly use one or the other
- it is the reposibility of the component (glibc in this case) to handle corner cases such as those
- update all components to use the new functions

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