scripts/build/cc_gcc.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Apr 28 07:44:22 2008 +0000 (2008-04-28)
changeset 462 b959799c9a36
parent 414 12919d5777fb
child 466 7f9bbf94b0bb
permissions -rw-r--r--
Be alittle less verbose in the core CC pass 1 & 2.

/trunk/scripts/build/cc_gcc.sh | 5 0 5 0 -----
1 file changed, 5 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 do_print_filename() {
     6     [ "${CT_CC}" = "gcc" ] || return 0
     7     echo "gcc-${CT_CC_VERSION}"
     8 }
     9 
    10 # Download final gcc
    11 do_cc_get() {
    12     # Ah! gcc folks are kind of 'different': they store the tarballs in
    13     # subdirectories of the same name! That's because gcc is such /crap/ that
    14     # it is such /big/ that it needs being splitted for distribution! Sad. :-(
    15     # Arrgghh! Some of those versions does not follow this convention:
    16     # gcc-3.3.3 lives in releases/gcc-3.3.3, while gcc-2.95.* isn't in a
    17     # subdirectory! You bastard!
    18     CT_GetFile "${CT_CC_FILE}"                                  \
    19                ftp://ftp.gnu.org/gnu/gcc/${CT_CC_FILE}          \
    20                ftp://ftp.gnu.org/gnu/gcc/releases/${CT_CC_FILE} \
    21                ftp://ftp.gnu.org/gnu/gcc
    22 }
    23 
    24 # Extract final gcc
    25 do_cc_extract() {
    26     CT_ExtractAndPatch "${CT_CC_FILE}"
    27 }
    28 
    29 #------------------------------------------------------------------------------
    30 # Core gcc pass 1
    31 do_cc_core_pass_1() {
    32     # In case we're NPTL, build the static core gcc;
    33     # in any other case, do nothing.
    34     case "${CT_THREADS}" in
    35         nptl)   do_cc_core_static;;
    36     esac
    37 }
    38 
    39 # Core gcc pass 2
    40 do_cc_core_pass_2() {
    41     # In case we're NPTL, build the shared core gcc,
    42     # in any other case, build the static core gcc.
    43     case "${CT_THREADS}" in
    44         nptl)   do_cc_core_shared;;
    45         *)      do_cc_core_static;;
    46     esac
    47 }
    48 
    49 #------------------------------------------------------------------------------
    50 # Build static core gcc
    51 do_cc_core_static() {
    52     mkdir -p "${CT_BUILD_DIR}/build-cc-core-static"
    53     cd "${CT_BUILD_DIR}/build-cc-core-static"
    54 
    55     CT_DoStep INFO "Installing static core C compiler"
    56 
    57     CT_DoLog EXTRA "Copying headers to install area of bootstrap gcc, so it can build libgcc2"
    58     mkdir -p "${CT_CC_CORE_STATIC_PREFIX_DIR}/${CT_TARGET}/include"
    59     cp -r "${CT_HEADERS_DIR}"/* "${CT_CC_CORE_STATIC_PREFIX_DIR}/${CT_TARGET}/include" 2>&1 |CT_DoLog DEBUG
    60 
    61     CT_DoLog EXTRA "Configuring static core C compiler"
    62 
    63     extra_config="${CT_ARCH_WITH_ARCH} ${CT_ARCH_WITH_ABI} ${CT_ARCH_WITH_CPU} ${CT_ARCH_WITH_TUNE} ${CT_ARCH_WITH_FPU} ${CT_ARCH_WITH_FLOAT}"
    64     [ "${CT_CC_CXA_ATEXIT}" = "y" ] && extra_config="${extra_config} --enable-__cxa_atexit"
    65 
    66     CT_DoLog DEBUG "Extra config passed: \"${extra_config}\""
    67 
    68     # Use --with-local-prefix so older gccs don't look in /usr/local (http://gcc.gnu.org/PR10532)
    69     CFLAGS="${CT_CFLAGS_FOR_HOST}"                  \
    70     "${CT_SRC_DIR}/${CT_CC_FILE}/configure"         \
    71         ${CT_CANADIAN_OPT}                          \
    72         --host=${CT_HOST}                           \
    73         --target=${CT_TARGET}                       \
    74         --prefix="${CT_CC_CORE_STATIC_PREFIX_DIR}"  \
    75         --with-local-prefix="${CT_SYSROOT_DIR}"     \
    76         --disable-multilib                          \
    77         --with-newlib                               \
    78         ${CC_CORE_SYSROOT_ARG}                      \
    79         ${extra_config}                             \
    80         --disable-nls                               \
    81         --enable-threads=no                         \
    82         --enable-symvers=gnu                        \
    83         --enable-languages=c                        \
    84         --disable-shared                            \
    85         ${CT_CC_CORE_EXTRA_CONFIG}                  2>&1 |CT_DoLog ALL
    86 
    87     if [ "${CT_CANADIAN}" = "y" ]; then
    88         CT_DoLog EXTRA "Building libiberty"
    89         make ${PARALLELMFLAGS} all-build-libiberty 2>&1 |CT_DoLog ALL
    90     fi
    91 
    92     CT_DoLog EXTRA "Building static core C compiler"
    93     make ${PARALLELMFLAGS} all-gcc 2>&1 |CT_DoLog ALL
    94 
    95     CT_DoLog EXTRA "Installing static core C compiler"
    96     make install-gcc 2>&1 |CT_DoLog ALL
    97 
    98     CT_EndStep
    99 }
   100 
   101 #------------------------------------------------------------------------------
   102 # Build shared core gcc
   103 do_cc_core_shared() {
   104     mkdir -p "${CT_BUILD_DIR}/build-cc-core-shared"
   105     cd "${CT_BUILD_DIR}/build-cc-core-shared"
   106 
   107     CT_DoStep INFO "Installing shared core C compiler"
   108 
   109     CT_DoLog EXTRA "Copying headers to install area of bootstrap gcc, so it can build libgcc2"
   110     mkdir -p "${CT_CC_CORE_SHARED_PREFIX_DIR}/${CT_TARGET}/include"
   111     cp -r "${CT_HEADERS_DIR}"/* "${CT_CC_CORE_SHARED_PREFIX_DIR}/${CT_TARGET}/include" 2>&1 |CT_DoLog DEBUG
   112 
   113     CT_DoLog EXTRA "Configuring shared core C compiler"
   114 
   115     extra_config="${CT_ARCH_WITH_ARCH} ${CT_ARCH_WITH_ABI} ${CT_ARCH_WITH_CPU} ${CT_ARCH_WITH_TUNE} ${CT_ARCH_WITH_FPU} ${CT_ARCH_WITH_FLOAT}"
   116     [ "${CT_CC_CXA_ATEXIT}" = "y" ] && extra_config="${extra_config} --enable-__cxa_atexit"
   117 
   118     CT_DoLog DEBUG "Extra config passed: \"${extra_config}\""
   119 
   120     CFLAGS="${CT_CFLAGS_FOR_HOST}"                  \
   121     "${CT_SRC_DIR}/${CT_CC_FILE}/configure"         \
   122         ${CT_CANADIAN_OPT}                          \
   123         --target=${CT_TARGET}                       \
   124         --host=${CT_HOST}                           \
   125         --prefix="${CT_CC_CORE_SHARED_PREFIX_DIR}"  \
   126         --with-local-prefix="${CT_SYSROOT_DIR}"     \
   127         --disable-multilib                          \
   128         ${CC_CORE_SYSROOT_ARG}                      \
   129         ${extra_config}                             \
   130         --disable-nls                               \
   131         --enable-symvers=gnu                        \
   132         --enable-languages=c                        \
   133         --enable-shared                             \
   134         ${CT_CC_CORE_EXTRA_CONFIG}                  2>&1 |CT_DoLog ALL
   135 
   136     # HACK: we need to override SHLIB_LC from gcc/config/t-slibgcc-elf-ver or
   137     # gcc/config/t-libunwind so -lc is removed from the link for
   138     # libgcc_s.so, as we do not have a target -lc yet.
   139     # This is not as ugly as it appears to be ;-) All symbols get resolved
   140     # during the glibc build, and we provide a proper libgcc_s.so for the
   141     # cross toolchain during the final gcc build.
   142     #
   143     # As we cannot modify the source tree, nor override SHLIB_LC itself
   144     # during configure or make, we have to edit the resultant
   145     # gcc/libgcc.mk itself to remove -lc from the link.
   146     # This causes us to have to jump through some hoops...
   147     #
   148     # To produce libgcc.mk to edit we firstly require libiberty.a,
   149     # so we configure then build it.
   150     # Next we have to configure gcc, create libgcc.mk then edit it...
   151     # So much easier if we just edit the source tree, but hey...
   152     if [ ! -f "${CT_SRC_DIR}/${CT_CC_FILE}/gcc/BASE-VER" ]; then
   153         make configure-libiberty
   154         make -C libiberty libiberty.a
   155         make configure-gcc
   156         make configure-libcpp
   157         make all-libcpp
   158     else
   159         make configure-gcc
   160         make configure-libcpp
   161         make configure-build-libiberty
   162         make all-libcpp
   163         make all-build-libiberty
   164     fi 2>&1 |CT_DoLog ALL
   165     # HACK: gcc-4.2 uses libdecnumber to build libgcc.mk, so build it here.
   166     if [ -d "${CT_SRC_DIR}/${CT_CC_FILE}/libdecnumber" ]; then
   167         make configure-libdecnumber
   168         make -C libdecnumber libdecnumber.a
   169     fi 2>&1 |CT_DoLog ALL
   170     make -C gcc libgcc.mk 2>&1 |CT_DoLog ALL
   171     sed -r -i -e 's@-lc@@g' gcc/libgcc.mk
   172 
   173     if [ "${CT_CANADIAN}" = "y" ]; then
   174         CT_DoLog EXTRA "Building libiberty"
   175         make ${PARALLELMFLAGS} all-build-libiberty 2>&1 |CT_DoLog ALL
   176     fi
   177 
   178     CT_DoLog EXTRA "Building shared core C compiler"
   179     make ${PARALLELMFLAGS} all-gcc 2>&1 |CT_DoLog ALL
   180 
   181     CT_DoLog EXTRA "Installing shared core C compiler"
   182     make install-gcc 2>&1 |CT_DoLog ALL
   183 
   184     CT_EndStep
   185 }
   186 
   187 #------------------------------------------------------------------------------
   188 # Build final gcc
   189 do_cc() {
   190     CT_DoStep INFO "Installing final compiler"
   191 
   192     mkdir -p "${CT_BUILD_DIR}/build-cc"
   193     cd "${CT_BUILD_DIR}/build-cc"
   194 
   195     CT_DoLog EXTRA "Configuring final compiler"
   196 
   197     # Enable selected languages
   198     lang_opt="c"
   199     [ "${CT_CC_LANG_CXX}" = "y"      ] && lang_opt="${lang_opt},c++"
   200     [ "${CT_CC_LANG_FORTRAN}" = "y"  ] && lang_opt="${lang_opt},fortran"
   201     [ "${CT_CC_LANG_ADA}" = "y"      ] && lang_opt="${lang_opt},ada"
   202     [ "${CT_CC_LANG_JAVA}" = "y"     ] && lang_opt="${lang_opt},java"
   203     [ "${CT_CC_LANG_OBJC}" = "y"     ] && lang_opt="${lang_opt},objc"
   204     [ "${CT_CC_LANG_OBJCXX}" = "y"   ] && lang_opt="${lang_opt},obj-c++"
   205     CT_Test "Building Fortran language is not yet supported. Will try..." "${CT_CC_LANG_FORTRAN}" = "y"
   206     CT_Test "Building ADA language is not yet supported. Will try..." "${CT_CC_LANG_ADA}" = "y"
   207     CT_Test "Building Java language is not yet supported. Will try..." "${CT_CC_LANG_JAVA}" = "y"
   208     CT_Test "Building Objective-C language is not yet supported. Will try..." "${CT_CC_LANG_OBJC}" = "y"
   209     CT_Test "Building Objective-C++ language is not yet supported. Will try..." "${CT_CC_LANG_OBJCXX}" = "y"
   210     CT_Test "Building ${CT_CC_LANG_OTHERS} language(s) is not yet supported. Will try..." -n "${CT_CC_LANG_OTHERS}"
   211     lang_opt=`echo "${lang_opt},${CT_CC_LANG_OTHERS}" |sed -r -e 's/,+/,/g; s/,*$//;'`
   212 
   213     extra_config="--enable-languages=${lang_opt}"
   214     extra_config="${extra_config} ${CT_ARCH_WITH_ARCH} ${CT_ARCH_WITH_ABI} ${CT_ARCH_WITH_CPU} ${CT_ARCH_WITH_TUNE} ${CT_ARCH_WITH_FPU} ${CT_ARCH_WITH_FLOAT}"
   215     [ "${CT_SHARED_LIBS}" = "y" ] || extra_config="${extra_config} --disable-shared"
   216     [ "${CT_CC_CXA_ATEXIT}" == "y" ] && extra_config="${extra_config} --enable-__cxa_atexit"
   217     if [ "${CT_TARGET_MULTILIB}" = "y" ]; then
   218         extra_config="${extra_config} --enable-multilib"
   219     else
   220         extra_config="${extra_config} --disable-multilib"
   221     fi
   222 
   223     CT_DoLog DEBUG "Extra config passed: \"${extra_config}\""
   224 
   225     # --enable-symvers=gnu really only needed for sh4 to work around a
   226     # detection problem only matters for gcc-3.2.x and later, I think.
   227     # --disable-nls to work around crash bug on ppc405, but also because
   228     # embedded systems don't really need message catalogs...
   229     CFLAGS="${CT_CFLAGS_FOR_HOST}"              \
   230     TARGET_CFLAGS="${CT_TARGET_CFLAGS}"         \
   231     "${CT_SRC_DIR}/${CT_CC_FILE}/configure"     \
   232         ${CT_CANADIAN_OPT}                      \
   233         --target=${CT_TARGET} --host=${CT_HOST} \
   234         --prefix="${CT_PREFIX_DIR}"             \
   235         ${CC_SYSROOT_ARG}                       \
   236         ${extra_config}                         \
   237         --with-local-prefix="${CT_SYSROOT_DIR}" \
   238         --disable-nls                           \
   239         --enable-threads=posix                  \
   240         --enable-symvers=gnu                    \
   241         --enable-c99                            \
   242         --enable-long-long                      \
   243         ${CT_CC_EXTRA_CONFIG}                   2>&1 |CT_DoLog ALL
   244 
   245     if [ "${CT_CANADIAN}" = "y" ]; then
   246         CT_DoLog EXTRA "Building libiberty"
   247         make ${PARALLELMFLAGS} all-build-libiberty 2>&1 |CT_DoLog ALL
   248     fi
   249 
   250     # Idea from <cort.dougan at gmail.com>:
   251     # Fix lib/lib64 confusion for GCC 3.3.3 on PowerPC64 and x86_64.
   252     # GCC 3.4.0 and up don't suffer from this confusion, and don't need this
   253     # kludge.
   254     # FIXME: we should patch gcc's source rather than uglify crosstool.sh.
   255     # FIXME: is this needed for gcc-3.3.[56]?
   256     case "${CT_CC_FILE}" in
   257       gcc-3.3.[34])
   258         case "${CT_TARGET}" in
   259           powerpc64-unknown-linux-gnu|x86_64-unknown-linux-gnu)
   260             for d in `find "${CT_SYSROOT_DIR}" -name lib -type d -empty`; do
   261               if [ -d `dirname "${d}"`/lib64 ] ; then
   262                 rm -rf "${d}"
   263                 ln -s `dirname "${d}"`/lib64 "${d}"
   264               fi
   265             done ;;
   266           *) ;;
   267         esac ;;
   268     esac
   269 
   270     CT_DoLog EXTRA "Building final compiler"
   271     make ${PARALLELMFLAGS} all 2>&1 |CT_DoLog ALL
   272 
   273     CT_DoLog EXTRA "Installing final compiler"
   274     make install 2>&1 |CT_DoLog ALL
   275 
   276     # Create a symlink ${CT_TARGET}-cc to ${CT_TARGET}-gcc to always be able
   277     # to call the C compiler with the same, somewhat canonical name.
   278     ln "${CT_PREFIX_DIR}/bin/${CT_TARGET}"-{g,}cc
   279 
   280     # gcc installs stuff in prefix/target/lib, when it would make better sense
   281     # to install that into sysroot/usr/lib
   282     CT_DoLog EXTRA "Moving improperly installed gcc libs to sysroot"
   283     ( cd "${CT_PREFIX_DIR}/${CT_TARGET}/lib"; tar cf - . ) | ( cd "${CT_SYSROOT_DIR}/usr/lib"; tar xfv - )
   284 
   285     CT_EndStep
   286 }