scripts/build/cc/gcc.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Aug 15 22:52:51 2011 +0200 (2011-08-15)
changeset 2933 be5d4773a894
parent 2932 c1f65d6a9a13
child 2934 5926d424d6c5
permissions -rw-r--r--
cc/gcc: pass the language list to the core backend

As the core backend can be used to also build the bare-metal compiler,
we have to tel it what languages to build.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
     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     local linaro_version
     8     local linaro_series
     9     local linaro_base_url="http://launchpad.net/gcc-linaro"
    10 
    11 
    12     # Account for the Linaro versioning
    13     linaro_version="$( echo "${CT_CC_VERSION}"      \
    14                        |sed -r -e 's/^linaro-//;'   \
    15                      )"
    16     linaro_series="$( echo "${linaro_version}"      \
    17                       |sed -r -e 's/-.*//;'         \
    18                     )"
    19 
    20     # Ah! gcc folks are kind of 'different': they store the tarballs in
    21     # subdirectories of the same name! That's because gcc is such /crap/ that
    22     # it is such /big/ that it needs being splitted for distribution! Sad. :-(
    23     # Arrgghh! Some of those versions does not follow this convention:
    24     # gcc-3.3.3 lives in releases/gcc-3.3.3, while gcc-2.95.* isn't in a
    25     # subdirectory! You bastard!
    26     CT_GetFile "gcc-${CT_CC_VERSION}"                                                       \
    27                {ftp,http}://ftp.gnu.org/gnu/gcc{,{,/releases}/gcc-${CT_CC_VERSION}}         \
    28                ftp://ftp.irisa.fr/pub/mirrors/gcc.gnu.org/gcc/releases/gcc-${CT_CC_VERSION} \
    29                ftp://ftp.uvsq.fr/pub/gcc/snapshots/${CT_CC_VERSION}                         \
    30                "${linaro_base_url}/${linaro_series}/${linaro_version}/+download"
    31 
    32     # Starting with GCC 4.3, ecj is used for Java, and will only be
    33     # built if the configure script finds ecj.jar at the top of the
    34     # GCC source tree, which will not be there unless we get it and
    35     # put it there ourselves
    36     if [ "${CT_CC_LANG_JAVA_USE_ECJ}" = "y" ]; then
    37         CT_GetFile ecj-latest .jar ftp://gcc.gnu.org/pub/java   \
    38                                    ftp://sourceware.org/pub/java
    39     fi
    40 }
    41 
    42 # Extract gcc
    43 do_cc_extract() {
    44     CT_Extract "gcc-${CT_CC_VERSION}"
    45     CT_Patch "gcc" "${CT_CC_VERSION}"
    46 
    47     # Copy ecj-latest.jar to ecj.jar at the top of the GCC source tree
    48     if [ "${CT_CC_LANG_JAVA_USE_ECJ}" = "y"                     \
    49          -a ! -f "${CT_SRC_DIR}/gcc-${CT_CC_VERSION}/ecj.jar"   \
    50        ]; then
    51         CT_DoExecLog ALL cp -v "${CT_TARBALLS_DIR}/ecj-latest.jar" "${CT_SRC_DIR}/gcc-${CT_CC_VERSION}/ecj.jar"
    52     fi
    53 }
    54 
    55 #------------------------------------------------------------------------------
    56 # This function builds up the set of languages to enable
    57 # No argument expected, returns the comma-separated language list on stdout
    58 cc_gcc_lang_list() {
    59     local lang_list
    60 
    61     lang_list="c"
    62     [ "${CT_CC_LANG_CXX}" = "y"      ] && lang_list+=",c++"
    63     [ "${CT_CC_LANG_FORTRAN}" = "y"  ] && lang_list+=",fortran"
    64     [ "${CT_CC_LANG_ADA}" = "y"      ] && lang_list+=",ada"
    65     [ "${CT_CC_LANG_JAVA}" = "y"     ] && lang_list+=",java"
    66     [ "${CT_CC_LANG_OBJC}" = "y"     ] && lang_list+=",objc"
    67     [ "${CT_CC_LANG_OBJCXX}" = "y"   ] && lang_list+=",obj-c++"
    68     lang_list+="${CT_CC_LANG_OTHERS:+,${CT_CC_LANG_OTHERS}}"
    69 
    70     printf "%s" "${lang_list}"
    71 }
    72 
    73 #------------------------------------------------------------------------------
    74 # Core gcc pass 1
    75 do_cc_core_pass_1() {
    76     local -a core_opts
    77     local do_core
    78 
    79     # Do nothing for canadian-crosses, we already have a target compiler.
    80     # We only need a pass-1 core gcc if the threading model is NPTL.
    81     # For all other cases, it is not used.
    82     case "${CT_CANADIAN},${CT_THREADS}" in
    83         y,*)
    84             ;;
    85         ,nptl)
    86             do_core=y
    87             core_opts+=( "mode=static" )
    88             core_opts+=( "host=${CT_BUILD}" )
    89             core_opts+=( "complibs=${CT_BUILDTOOLS_PREFIX_DIR}" )
    90             core_opts+=( "prefix=${CT_BUILDTOOLS_PREFIX_DIR}" )
    91             core_opts+=( "cflags=${CT_CFLAGS_FOR_HOST}" )
    92             core_opts+=( "lang_list=c" )
    93             ;;
    94     esac
    95 
    96     if [ "${do_core}" = "y" ]; then
    97         CT_DoStep INFO "Installing pass-1 core C compiler"
    98         CT_mkdir_pushd "${CT_BUILD_DIR}/build-cc-core-pass-1"
    99 
   100         do_cc_core_backend "${core_opts[@]}"
   101 
   102         CT_Popd
   103         CT_EndStep
   104     fi
   105 }
   106 
   107 # Core gcc pass 2
   108 do_cc_core_pass_2() {
   109     local -a core_opts
   110     local do_core
   111 
   112     # Common options:
   113     core_opts+=( "host=${CT_BUILD}" )
   114     core_opts+=( "prefix=${CT_BUILDTOOLS_PREFIX_DIR}" )
   115     core_opts+=( "complibs=${CT_BUILDTOOLS_PREFIX_DIR}" )
   116     core_opts+=( "cflags=${CT_CFLAGS_FOR_HOST}" )
   117     core_opts+=( "lang_list=c" )
   118 
   119     # Do nothing for canadian-crosses, we already have a target compiler.
   120     # Different conditions are at stake here:
   121     #   - In case the threading model is NPTL, we need a shared-capable core
   122     #     gcc; in all other cases, we need a static-only core gcc.
   123     #   - In case the threading model is NPTL or win32, or gcc is 4.3 or
   124     #     later, we need to build libgcc
   125     case "${CT_CANADIAN},${CT_THREADS}" in
   126         y,*)
   127             ;;
   128         ,nptl)
   129             do_core=y
   130             core_opts+=( "mode=shared" )
   131             core_opts+=( "build_libgcc=yes" )
   132             ;;
   133         ,win32)
   134             do_core=y
   135             core_opts+=( "mode=static" )
   136             core_opts+=( "build_libgcc=yes" )
   137             ;;
   138         *)
   139             do_core=y
   140             core_opts+=( "mode=static" )
   141             if [ "${CT_CC_GCC_4_3_or_later}" = "y" ]; then
   142                 core_opts+=( "build_libgcc=yes" )
   143             fi
   144             ;;
   145     esac
   146 
   147     if [ "${do_core}" = "y" ]; then
   148         CT_DoStep INFO "Installing pass-2 core C compiler"
   149         CT_mkdir_pushd "${CT_BUILD_DIR}/build-cc-core-pass-2"
   150 
   151         do_cc_core_backend "${core_opts[@]}"
   152 
   153         CT_Popd
   154         CT_EndStep
   155     fi
   156 }
   157 
   158 #------------------------------------------------------------------------------
   159 # Build core gcc
   160 # This function is used to build the core C compiler.
   161 # Usage: do_cc_core_backend param=value [...]
   162 #   Parameter           : Definition                                : Type      : Default
   163 #   mode                : build a 'static', 'shared' or 'baremetal' : string    : (none)
   164 #   host                : the machine the core will run on          : tuple     : (none)
   165 #   prefix              : dir prefix to install into                : dir       : (none)
   166 #   complibs            : dir where complibs are isntalled          : dir       : (none)
   167 #   lang_list           : the list of languages to build            : string    : (empty)
   168 #   build_libgcc        : build libgcc or not                       : bool      : no
   169 #   build_libstdcxx     : build libstdc++ or not                    : bool      : no
   170 #   build_staticlinked  : build statically linked or not            : bool      : no
   171 #   build_manuals       : whether to build manuals or not           : bool      : no
   172 #   cflags              : host CFLAGS to use                        : string    : (empty)
   173 # Usage: do_cc_core_backend mode=[static|shared|baremetal] build_libgcc=[yes|no] build_staticlinked=[yes|no]
   174 do_cc_core_backend() {
   175     local mode
   176     local build_libgcc=no
   177     local build_libstdcxx=no
   178     local build_staticlinked=no
   179     local build_manuals=no
   180     local host
   181     local prefix
   182     local complibs
   183     local lang_list
   184     local cflags
   185     local tmp
   186     local -a host_libstdcxx_flags
   187     local -a extra_config
   188     local -a core_LDFLAGS
   189     local -a core_targets
   190     local arg
   191 
   192     for arg in "$@"; do
   193         eval "${arg// /\\ }"
   194     done
   195 
   196     CT_DoLog EXTRA "Configuring core C compiler"
   197 
   198     case "${mode}" in
   199         static)
   200             extra_config+=("--with-newlib")
   201             extra_config+=("--enable-threads=no")
   202             extra_config+=("--disable-shared")
   203             copy_headers=y  # For baremetal, as there's no headers to copy,
   204                             # we copy an empty directory. So, who cares?
   205             ;;
   206         shared)
   207             extra_config+=("--enable-shared")
   208             copy_headers=y
   209             ;;
   210         baremetal)
   211             extra_config+=("--with-newlib")
   212             extra_config+=("--enable-threads=no")
   213             extra_config+=("--disable-shared")
   214             copy_headers=n
   215             ;;
   216         *)
   217             CT_Abort "Internal Error: 'mode' must be one of: 'static', 'shared' or 'baremetal', not '${mode:-(empty)}'"
   218             ;;
   219     esac
   220 
   221     if [ "${CT_CC_GCC_HAS_PKGVERSION_BUGURL}" = "y" ]; then
   222         # Bare metal delivers the core compiler as final compiler, so add version info and bugurl
   223         extra_config+=("--with-pkgversion=${CT_PKGVERSION}")
   224         [ -n "${CT_TOOLCHAIN_BUGURL}" ] && extra_config+=("--with-bugurl=${CT_TOOLCHAIN_BUGURL}")
   225     fi
   226 
   227     if [ "${copy_headers}" = "y" ]; then
   228         CT_DoLog DEBUG "Copying headers to install area of bootstrap gcc, so it can build libgcc2"
   229         CT_DoExecLog ALL cp -a "${CT_HEADERS_DIR}" "${prefix}/${CT_TARGET}/include"
   230     fi
   231 
   232     for tmp in ARCH ABI CPU TUNE FPU FLOAT; do
   233         eval tmp="\${CT_ARCH_WITH_${tmp}}"
   234         if [ -n "${tmp}" ]; then
   235             extra_config+=("${tmp}")
   236         fi
   237     done
   238     if [ "${CT_CC_CXA_ATEXIT}" = "y" ]; then
   239         extra_config+=("--enable-__cxa_atexit")
   240     else
   241         extra_config+=("--disable-__cxa_atexit")
   242     fi
   243 
   244     # *** WARNING ! ***
   245     # Keep this full if-else-if-elif-fi-fi block in sync
   246     # with the same block in do_cc, below.
   247     if [ "${build_staticlinked}" = "yes" ]; then
   248         core_LDFLAGS+=("-static")
   249         host_libstdcxx_flags+=("-static-libgcc")
   250         host_libstdcxx_flags+=("-Wl,-Bstatic,-lstdc++")
   251         host_libstdcxx_flags+=("-lm")
   252         # Companion libraries are build static (eg !shared), so
   253         # the libstdc++ is not pulled automatically, although it
   254         # is needed. Shoe-horn it in our LDFLAGS
   255         # Ditto libm on some Fedora boxen
   256         core_LDFLAGS+=("-lstdc++")
   257         core_LDFLAGS+=("-lm")
   258     else
   259         if [ "${CT_CC_STATIC_LIBSTDCXX}" = "y" ]; then
   260             # this is from CodeSourcery arm-2010q1-202-arm-none-linux-gnueabi.src.tar.bz2
   261             # build script
   262             # INFO: if the host gcc is gcc-4.5 then presumably we could use -static-libstdc++,
   263             #       see http://gcc.gnu.org/ml/gcc-patches/2009-06/msg01635.html
   264             host_libstdcxx_flags+=("-static-libgcc")
   265             host_libstdcxx_flags+=("-Wl,-Bstatic,-lstdc++,-Bdynamic")
   266             host_libstdcxx_flags+=("-lm")
   267         elif [ "${CT_COMPLIBS_SHARED}" != "y" ]; then
   268             # When companion libraries are build static (eg !shared),
   269             # the libstdc++ is not pulled automatically, although it
   270             # is needed. Shoe-horn it in our LDFLAGS
   271             # Ditto libm on some Fedora boxen
   272             core_LDFLAGS+=("-lstdc++")
   273             core_LDFLAGS+=("-lm")
   274         fi
   275     fi
   276 
   277     if [ "${CT_CC_GCC_USE_GMP_MPFR}" = "y" ]; then
   278         extra_config+=("--with-gmp=${complibs}")
   279         extra_config+=("--with-mpfr=${complibs}")
   280     fi
   281     if [ "${CT_CC_GCC_USE_MPC}" = "y" ]; then
   282         extra_config+=("--with-mpc=${complibs}")
   283     fi
   284     if [ "${CT_CC_GCC_USE_GRAPHITE}" = "y" ]; then
   285         extra_config+=("--with-ppl=${complibs}")
   286         # With PPL 0.11+, also pull libpwl if needed
   287         if [ "${CT_PPL_NEEDS_LIBPWL}" = "y" ]; then
   288             host_libstdcxx_flags+=("-L${complibs}/lib")
   289             host_libstdcxx_flags+=("-lpwl")
   290         fi
   291         extra_config+=("--with-cloog=${complibs}")
   292     elif [ "${CT_CC_GCC_HAS_GRAPHITE}" = "y" ]; then
   293         extra_config+=("--with-ppl=no")
   294         extra_config+=("--with-cloog=no")
   295     fi
   296     if [ "${CT_CC_GCC_USE_LTO}" = "y" ]; then
   297         extra_config+=("--with-libelf=${complibs}")
   298         extra_config+=("--enable-lto")
   299     elif [ "${CT_CC_GCC_HAS_LTO}" = "y" ]; then
   300         extra_config+=("--with-libelf=no")
   301         extra_config+=("--disable-lto")
   302     fi
   303 
   304     if [ ${#host_libstdcxx_flags[@]} -ne 0 ]; then
   305         extra_config+=("--with-host-libstdcxx=${host_libstdcxx_flags[*]}")
   306     fi
   307 
   308     if [ "${CT_CC_GCC_ENABLE_TARGET_OPTSPACE}" = "y" ]; then
   309         extra_config+=("--enable-target-optspace")
   310     fi
   311 
   312     case "${CT_CC_GCC_LDBL_128}" in
   313         y)  extra_config+=("--with-long-double-128");;
   314         m)  ;;
   315         "") extra_config+=("--without-long-double-128");;
   316     esac
   317 
   318     if [ "${CT_CC_GCC_BUILD_ID}" = "y" ]; then
   319         extra_config+=( --enable-linker-build-id )
   320     fi
   321 
   322     case "${CT_CC_GCC_LNK_HASH_STYLE}" in
   323         "") ;;
   324         *)  extra_config+=( "--with-linker-hash-style=${CT_CC_GCC_LNK_HASH_STYLE}" );;
   325     esac
   326 
   327     case "${CT_ARCH}" in
   328         mips)
   329             case "${CT_CC_GCC_mips_llsc}" in
   330                 y)  extra_config+=( --with-llsc );;
   331                 m)  ;;
   332                 *)  extra_config+=( --without-llsc );;
   333             esac
   334             case "${CT_CC_GCC_mips_synci}" in
   335                 y)  extra_config+=( --with-synci );;
   336                 m)  ;;
   337                 *)  extra_config+=( --without-synci );;
   338             esac
   339             if [ "${CT_CC_GCC_mips_plt}" ]; then
   340                 extra_config+=( --with-mips-plt )
   341             fi
   342             ;; # ARCH is mips
   343     esac
   344 
   345     extra_config+=(--disable-libgomp)
   346     extra_config+=(--disable-libmudflap)
   347 
   348     [ "${CT_TOOLCHAIN_ENABLE_NLS}" != "y" ] && extra_config+=("--disable-nls")
   349 
   350     [ "${CT_CC_GCC_DISABLE_PCH}" = "y" ] && extra_config+=("--disable-libstdcxx-pch")
   351 
   352     if [ "${CT_CC_GCC_SYSTEM_ZLIB}" = "y" ]; then
   353         extra_config+=("--with-system-zlib")
   354     fi
   355 
   356     if [ "${CT_MULTILIB}" = "y" ]; then
   357         extra_config+=("--enable-multilib")
   358     else
   359         extra_config+=("--disable-multilib")
   360     fi
   361 
   362     CT_DoLog DEBUG "Extra config passed: '${extra_config[*]}'"
   363 
   364     # Use --with-local-prefix so older gccs don't look in /usr/local (http://gcc.gnu.org/PR10532)
   365     CT_DoExecLog CFG                                \
   366     CC_FOR_BUILD="${CT_BUILD}-gcc"                  \
   367     CFLAGS="${cflags}"                              \
   368     LDFLAGS="${core_LDFLAGS[*]}"                    \
   369     "${CT_SRC_DIR}/gcc-${CT_CC_VERSION}/configure"  \
   370         --build=${CT_BUILD}                         \
   371         --host=${host}                              \
   372         --target=${CT_TARGET}                       \
   373         --prefix="${prefix}"                        \
   374         --with-local-prefix="${CT_SYSROOT_DIR}"     \
   375         --disable-libmudflap                        \
   376         ${CC_CORE_SYSROOT_ARG}                      \
   377         "${extra_config[@]}"                        \
   378         --enable-languages="${lang_list}"           \
   379         "${CT_CC_CORE_EXTRA_CONFIG_ARRAY[@]}"
   380 
   381     if [ "${build_libgcc}" = "yes" ]; then
   382         # HACK: we need to override SHLIB_LC from gcc/config/t-slibgcc-elf-ver or
   383         # gcc/config/t-libunwind so -lc is removed from the link for
   384         # libgcc_s.so, as we do not have a target -lc yet.
   385         # This is not as ugly as it appears to be ;-) All symbols get resolved
   386         # during the glibc build, and we provide a proper libgcc_s.so for the
   387         # cross toolchain during the final gcc build.
   388         #
   389         # As we cannot modify the source tree, nor override SHLIB_LC itself
   390         # during configure or make, we have to edit the resultant
   391         # gcc/libgcc.mk itself to remove -lc from the link.
   392         # This causes us to have to jump through some hoops...
   393         #
   394         # To produce libgcc.mk to edit we firstly require libiberty.a,
   395         # so we configure then build it.
   396         # Next we have to configure gcc, create libgcc.mk then edit it...
   397         # So much easier if we just edit the source tree, but hey...
   398         if [ ! -f "${CT_SRC_DIR}/gcc-${CT_CC_VERSION}/gcc/BASE-VER" ]; then
   399             CT_DoExecLog CFG make ${JOBSFLAGS} configure-libiberty
   400             CT_DoExecLog ALL make ${JOBSFLAGS} -C libiberty libiberty.a
   401             CT_DoExecLog CFG make ${JOBSFLAGS} configure-gcc configure-libcpp
   402             CT_DoExecLog ALL make ${JOBSFLAGS} all-libcpp
   403         else
   404             CT_DoExecLog CFG make ${JOBSFLAGS} configure-gcc configure-libcpp configure-build-libiberty
   405             CT_DoExecLog ALL make ${JOBSFLAGS} all-libcpp all-build-libiberty
   406         fi
   407         # HACK: gcc-4.2 uses libdecnumber to build libgcc.mk, so build it here.
   408         if [ -d "${CT_SRC_DIR}/gcc-${CT_CC_VERSION}/libdecnumber" ]; then
   409             CT_DoExecLog CFG make ${JOBSFLAGS} configure-libdecnumber
   410             CT_DoExecLog ALL make ${JOBSFLAGS} -C libdecnumber libdecnumber.a
   411         fi
   412 
   413         # Starting with GCC 4.3, libgcc.mk is no longer built,
   414         # and libgcc.mvars is used instead.
   415 
   416         if [ "${CT_CC_GCC_4_3_or_later}" = "y" ]; then
   417             libgcc_rule="libgcc.mvars"
   418             core_targets=( gcc target-libgcc )
   419         else
   420             libgcc_rule="libgcc.mk"
   421             core_targets=( gcc )
   422         fi
   423 
   424         # On bare metal and canadian build the host-compiler is used when
   425         # actually the build-system compiler is required. Choose the correct
   426         # compilers for canadian build and use the defaults on other
   427         # configurations.
   428         if [ "${CT_BARE_METAL},${CT_CANADIAN}" = "y,y" ]; then
   429             repair_cc="CC_FOR_BUILD=${CT_BUILD}-gcc \
   430                        GCC_FOR_TARGET=${CT_TARGET}-gcc"
   431         else
   432             repair_cc=""
   433         fi
   434 
   435         CT_DoExecLog ALL make ${JOBSFLAGS} -C gcc ${libgcc_rule} \
   436                               ${repair_cc}
   437         sed -r -i -e 's@-lc@@g' gcc/${libgcc_rule}
   438     else # build_libgcc
   439         core_targets=( gcc )
   440     fi   # ! build libgcc
   441     if [    "${build_libstdcxx}" = "yes"    \
   442          -a "${CT_CC_LANG_CXX}"  = "y"      \
   443        ]; then
   444         core_targets+=( target-libstdc++-v3 )
   445     fi
   446 
   447     CT_DoLog EXTRA "Building core C compiler"
   448     CT_DoExecLog ALL make ${JOBSFLAGS} "${core_targets[@]/#/all-}"
   449 
   450     CT_DoLog EXTRA "Installing core C compiler"
   451     CT_DoExecLog ALL make ${JOBSFLAGS} "${core_targets[@]/#/install-}"
   452 
   453     if [ "${build_manuals}" = "yes" ]; then
   454         CT_DoLog EXTRA "Building the GCC manuals"
   455         CT_DoExecLog ALL make pdf html
   456         CT_DoLog EXTRA "Installing the GCC manuals"
   457         CT_DoExecLog ALL make install-{pdf,html}-gcc
   458     fi
   459 
   460     # Create a symlink ${CT_TARGET}-cc to ${CT_TARGET}-gcc to always be able
   461     # to call the C compiler with the same, somewhat canonical name.
   462     # check whether compiler has an extension
   463     file="$( ls -1 "${prefix}/bin/${CT_TARGET}-gcc."* 2>/dev/null || true )"
   464     [ -z "${file}" ] || ext=".${file##*.}"
   465     CT_DoExecLog ALL ln -sfv "${CT_TARGET}-gcc${ext}" "${prefix}/bin/${CT_TARGET}-cc${ext}"
   466 
   467     if [ "${CT_MULTILIB}" = "y" ]; then
   468         multilibs=( $( "${prefix}/bin/${CT_TARGET}-gcc" -print-multi-lib   \
   469                        |tail -n +2 ) )
   470         if [ ${#multilibs[@]} -ne 0 ]; then
   471             CT_DoLog EXTRA "gcc configured with these multilibs (besides the default):"
   472             for i in "${multilibs[@]}"; do
   473                 dir="${i%%;*}"
   474                 flags="${i#*;}"
   475                 CT_DoLog EXTRA "   ${flags//@/ -}  -->  ${dir}/"
   476             done
   477         else
   478             CT_DoLog WARN "gcc configured for multilib, but none available"
   479         fi
   480     fi
   481 }
   482 
   483 #------------------------------------------------------------------------------
   484 # Build final gcc
   485 do_cc() {
   486     local -a final_opts
   487     local final_backend
   488 
   489     final_opts+=( "host=${CT_HOST}" )
   490     final_opts+=( "prefix=${CT_PREFIX_DIR}" )
   491     final_opts+=( "complibs=${CT_HOST_COMPLIBS_DIR}" )
   492     final_opts+=( "cflags=${CT_CFLAGS_FOR_HOST}" )
   493     if [ "${CT_BUILD_MANUALS}" = "y" ]; then
   494         final_opts+=( "build_manuals=yes" )
   495     fi
   496     if [ "${CT_BARE_METAL}" = "y" ]; then
   497         final_opts+=( "mode=baremetal" )
   498         final_opts+=( "build_libgcc=yes" )
   499         final_opts+=( "build_libstdcxx=yes" )
   500         final_opts+=( "lang_list=$( cc_gcc_lang_list )" )
   501         if [ "${CT_STATIC_TOOLCHAIN}" = "y" ]; then
   502             final_opts+=( "build_staticlinked=yes" )
   503         fi
   504         final_backend=do_cc_core_backend
   505     else
   506         final_backend=do_cc_backend
   507     fi
   508 
   509     CT_DoStep INFO "Installing final compiler"
   510     CT_mkdir_pushd "${CT_BUILD_DIR}/build-cc-final"
   511 
   512     "${final_backend}" "${final_opts[@]}"
   513 
   514     CT_Popd
   515     CT_EndStep
   516 }
   517 
   518 #------------------------------------------------------------------------------
   519 # Build the final gcc
   520 # Usage: do_cc_backend param=value [...]
   521 #   Parameter     : Definition                          : Type      : Default
   522 #   host          : the host we run onto                : tuple     : (none)
   523 #   prefix        : the runtime prefix                  : dir       : (none)
   524 #   complibs      : the companion libraries prefix      : dir       : (none)
   525 #   cflags        : the host CFLAGS                     : string    : (empty)
   526 #   build_manuals : whether to build manuals or not     : bool      : no
   527 do_cc_backend() {
   528     local host
   529     local prefix
   530     local complibs
   531     local cflags
   532     local build_manuals
   533     local -a host_libstdcxx_flags
   534     local -a extra_config
   535     local -a final_LDFLAGS
   536     local tmp
   537     local arg
   538 
   539     for arg in "$@"; do
   540         eval "${arg// /\\ }"
   541     done
   542 
   543     CT_DoLog EXTRA "Configuring final compiler"
   544 
   545     # Enable selected languages
   546     extra_config+=("--enable-languages=$( cc_gcc_lang_list )")
   547 
   548     for tmp in ARCH ABI CPU TUNE FPU FLOAT; do
   549         eval tmp="\${CT_ARCH_WITH_${tmp}}"
   550         if [ -n "${tmp}" ]; then
   551             extra_config+=("${tmp}")
   552         fi
   553     done
   554 
   555     [ "${CT_SHARED_LIBS}" = "y" ] || extra_config+=("--disable-shared")
   556     if [ "${CT_CC_GCC_HAS_PKGVERSION_BUGURL}" = "y" ]; then
   557         extra_config+=("--with-pkgversion=${CT_PKGVERSION}")
   558         [ -n "${CT_TOOLCHAIN_BUGURL}" ] && extra_config+=("--with-bugurl=${CT_TOOLCHAIN_BUGURL}")
   559     fi
   560     case "${CT_CC_GCC_SJLJ_EXCEPTIONS}" in
   561         y)  extra_config+=("--enable-sjlj-exceptions");;
   562         m)  ;;
   563         "") extra_config+=("--disable-sjlj-exceptions");;
   564     esac
   565     if [ "${CT_CC_CXA_ATEXIT}" = "y" ]; then
   566         extra_config+=("--enable-__cxa_atexit")
   567     else
   568         extra_config+=("--disable-__cxa_atexit")
   569     fi
   570     if [ -n "${CT_CC_ENABLE_CXX_FLAGS}" ]; then
   571         extra_config+=("--enable-cxx-flags=${CT_CC_ENABLE_CXX_FLAGS}")
   572     fi
   573     if [ "${CT_CC_GCC_LIBMUDFLAP}" = "y" ]; then
   574         extra_config+=(--enable-libmudflap)
   575     else
   576         extra_config+=(--disable-libmudflap)
   577     fi
   578     if [ "${CT_CC_GCC_LIBGOMP}" = "y" ]; then
   579         extra_config+=(--enable-libgomp)
   580     else
   581         extra_config+=(--disable-libgomp)
   582     fi
   583     if [ "${CT_CC_GCC_LIBSSP}" = "y" ]; then
   584         extra_config+=(--enable-libssp)
   585     else
   586         extra_config+=(--disable-libssp)
   587     fi
   588 
   589     # *** WARNING ! ***
   590     # Keep this full if-else-if-elif-fi-fi block in sync
   591     # with the same block in do_cc_core, above.
   592     if [ "${CT_STATIC_TOOLCHAIN}" = "y" ]; then
   593         final_LDFLAGS+=("-static")
   594         host_libstdcxx_flags+=("-static-libgcc")
   595         host_libstdcxx_flags+=("-Wl,-Bstatic,-lstdc++")
   596         host_libstdcxx_flags+=("-lm")
   597         # Companion libraries are build static (eg !shared), so
   598         # the libstdc++ is not pulled automatically, although it
   599         # is needed. Shoe-horn it in our LDFLAGS
   600         # Ditto libm on some Fedora boxen
   601         final_LDFLAGS+=("-lstdc++")
   602         final_LDFLAGS+=("-lm")
   603     else
   604         if [ "${CT_CC_STATIC_LIBSTDCXX}" = "y" ]; then
   605             # this is from CodeSourcery arm-2010q1-202-arm-none-linux-gnueabi.src.tar.bz2
   606             # build script
   607             # INFO: if the host gcc is gcc-4.5 then presumably we could use -static-libstdc++,
   608             #       see http://gcc.gnu.org/ml/gcc-patches/2009-06/msg01635.html
   609             host_libstdcxx_flags+=("-static-libgcc")
   610             host_libstdcxx_flags+=("-Wl,-Bstatic,-lstdc++,-Bdynamic")
   611             host_libstdcxx_flags+=("-lm")
   612         elif [ "${CT_COMPLIBS_SHARED}" != "y" ]; then
   613             # When companion libraries are build static (eg !shared),
   614             # the libstdc++ is not pulled automatically, although it
   615             # is needed. Shoe-horn it in our LDFLAGS
   616             # Ditto libm on some Fedora boxen
   617             final_LDFLAGS+=("-lstdc++")
   618             final_LDFLAGS+=("-lm")
   619         fi
   620     fi
   621 
   622     if [ "${CT_CC_GCC_USE_GMP_MPFR}" = "y" ]; then
   623         extra_config+=("--with-gmp=${complibs}")
   624         extra_config+=("--with-mpfr=${complibs}")
   625     fi
   626     if [ "${CT_CC_GCC_USE_MPC}" = "y" ]; then
   627         extra_config+=("--with-mpc=${complibs}")
   628     fi
   629     if [ "${CT_CC_GCC_USE_GRAPHITE}" = "y" ]; then
   630         extra_config+=("--with-ppl=${complibs}")
   631         # With PPL 0.11+, also pull libpwl if needed
   632         if [ "${CT_PPL_NEEDS_LIBPWL}" = "y" ]; then
   633             host_libstdcxx_flags+=("-L${complibs}/lib")
   634             host_libstdcxx_flags+=("-lpwl")
   635         fi
   636         extra_config+=("--with-cloog=${complibs}")
   637     elif [ "${CT_CC_GCC_HAS_GRAPHITE}" = "y" ]; then
   638         extra_config+=("--with-ppl=no")
   639         extra_config+=("--with-cloog=no")
   640     fi
   641     if [ "${CT_CC_GCC_USE_LTO}" = "y" ]; then
   642         extra_config+=("--with-libelf=${complibs}")
   643     elif [ "${CT_CC_GCC_HAS_LTO}" = "y" ]; then
   644         extra_config+=("--with-libelf=no")
   645     fi
   646 
   647     if [ ${#host_libstdcxx_flags[@]} -ne 0 ]; then
   648         extra_config+=("--with-host-libstdcxx=${host_libstdcxx_flags[*]}")
   649     fi
   650 
   651     if [ "${CT_THREADS}" = "none" ]; then
   652         extra_config+=("--disable-threads")
   653         if [ "${CT_CC_GCC_4_2_or_later}" = y ]; then
   654             CT_Test "Disabling libgomp for no-thread gcc>=4.2" "${CT_CC_GCC_LIBGOMP}" = "Y"
   655             extra_config+=("--disable-libgomp")
   656         fi
   657     else
   658         if [ "${CT_THREADS}" = "win32" ]; then
   659             extra_config+=("--enable-threads=win32")
   660             extra_config+=("--disable-win32-registry")
   661         else
   662             extra_config+=("--enable-threads=posix")
   663         fi
   664     fi
   665 
   666     if [ "${CT_CC_GCC_ENABLE_TARGET_OPTSPACE}" = "y" ]; then
   667         extra_config+=("--enable-target-optspace")
   668     fi
   669     if [ "${CT_CC_GCC_DISABLE_PCH}" = "y" ]; then
   670         extra_config+=("--disable-libstdcxx-pch")
   671     fi
   672 
   673     case "${CT_CC_GCC_LDBL_128}" in
   674         y)  extra_config+=("--with-long-double-128");;
   675         m)  ;;
   676         "") extra_config+=("--without-long-double-128");;
   677     esac
   678 
   679     if [ "${CT_CC_GCC_BUILD_ID}" = "y" ]; then
   680         extra_config+=( --enable-linker-build-id )
   681     fi
   682 
   683     case "${CT_CC_GCC_LNK_HASH_STYLE}" in
   684         "") ;;
   685         *)  extra_config+=( "--with-linker-hash-style=${CT_CC_GCC_LNK_HASH_STYLE}" );;
   686     esac
   687 
   688     if [ "${CT_CC_GCC_ENABLE_PLUGINS}" = "y" ]; then
   689         extra_config+=( --enable-plugin )
   690     fi
   691     if [ "${CT_CC_GCC_GOLD}" = "y" ]; then
   692         extra_config+=( --enable-gold )
   693     fi
   694 
   695     case "${CT_ARCH}" in
   696         mips)
   697             case "${CT_CC_GCC_mips_llsc}" in
   698                 y)  extra_config+=( --with-llsc );;
   699                 m)  ;;
   700                 *)  extra_config+=( --without-llsc );;
   701             esac
   702             case "${CT_CC_GCC_mips_synci}" in
   703                 y)  extra_config+=( --with-synci );;
   704                 m)  ;;
   705                 *)  extra_config+=( --without-synci );;
   706             esac
   707             if [ "${CT_CC_GCC_mips_plt}" ]; then
   708                 extra_config+=( --with-mips-plt )
   709             fi
   710             ;; # ARCH is mips
   711     esac
   712 
   713     [ "${CT_TOOLCHAIN_ENABLE_NLS}" != "y" ] && extra_config+=("--disable-nls")
   714 
   715     if [ "${CT_CC_GCC_SYSTEM_ZLIB}" = "y" ]; then
   716         extra_config+=("--with-system-zlib")
   717     fi
   718 
   719     if [ "${CT_MULTILIB}" = "y" ]; then
   720         extra_config+=("--enable-multilib")
   721     else
   722         extra_config+=("--disable-multilib")
   723     fi
   724 
   725     CT_DoLog DEBUG "Extra config passed: '${extra_config[*]}'"
   726 
   727     CT_DoExecLog CFG                                \
   728     CC_FOR_BUILD="${CT_BUILD}-gcc"                  \
   729     CFLAGS="${cflags}"                              \
   730     LDFLAGS="${final_LDFLAGS[*]}"                   \
   731     CFLAGS_FOR_TARGET="${CT_TARGET_CFLAGS}"         \
   732     CXXFLAGS_FOR_TARGET="${CT_TARGET_CFLAGS}"       \
   733     LDFLAGS_FOR_TARGET="${CT_TARGET_LDFLAGS}"       \
   734     "${CT_SRC_DIR}/gcc-${CT_CC_VERSION}/configure"  \
   735         --build=${CT_BUILD}                         \
   736         --host=${host}                              \
   737         --target=${CT_TARGET}                       \
   738         --prefix="${prefix}"                        \
   739         ${CC_SYSROOT_ARG}                           \
   740         "${extra_config[@]}"                        \
   741         --with-local-prefix="${CT_SYSROOT_DIR}"     \
   742         --enable-c99                                \
   743         --enable-long-long                          \
   744         "${CT_CC_EXTRA_CONFIG_ARRAY[@]}"
   745 
   746     if [ "${CT_CANADIAN}" = "y" ]; then
   747         CT_DoLog EXTRA "Building libiberty"
   748         CT_DoExecLog ALL make ${JOBSFLAGS} all-build-libiberty
   749     fi
   750 
   751     CT_DoLog EXTRA "Building final compiler"
   752     CT_DoExecLog ALL make ${JOBSFLAGS} all
   753 
   754     CT_DoLog EXTRA "Installing final compiler"
   755     CT_DoExecLog ALL make ${JOBSFLAGS} install
   756 
   757     if [ "${build_manuals}" = "yes" ]; then
   758         CT_DoLog EXTRA "Building the GCC manuals"
   759         CT_DoExecLog ALL make ${JOBSFLAGS} pdf html
   760         CT_DoLog EXTRA "Installing the GCC manuals"
   761         CT_DoExecLog ALL make install-{pdf,html}-gcc
   762     fi
   763 
   764     # Create a symlink ${CT_TARGET}-cc to ${CT_TARGET}-gcc to always be able
   765     # to call the C compiler with the same, somewhat canonical name.
   766     # check whether compiler has an extension
   767     file="$( ls -1 "${CT_PREFIX_DIR}/bin/${CT_TARGET}-gcc."* 2>/dev/null || true )"
   768     [ -z "${file}" ] || ext=".${file##*.}"
   769     CT_DoExecLog ALL ln -sfv "${CT_TARGET}-gcc${ext}" "${CT_PREFIX_DIR}/bin/${CT_TARGET}-cc${ext}"
   770 
   771     if [ "${CT_MULTILIB}" = "y" ]; then
   772         multilibs=( $( "${CT_PREFIX_DIR}/bin/${CT_TARGET}-gcc" -print-multi-lib \
   773                        |tail -n +2 ) )
   774         if [ ${#multilibs[@]} -ne 0 ]; then
   775             CT_DoLog EXTRA "gcc configured with these multilibs (besides the default):"
   776             for i in "${multilibs[@]}"; do
   777                 dir="${i%%;*}"
   778                 flags="${i#*;}"
   779                 CT_DoLog EXTRA "   ${flags//@/ -}  -->  ${dir}/"
   780             done
   781         else
   782             CT_DoLog WARN "gcc configured for multilib, but none available"
   783         fi
   784     fi
   785 }