scripts/build/libc_glibc.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Jun 16 21:44:45 2007 +0000 (2007-06-16)
changeset 164 e78c0b2bc057
parent 161 be4484f10ac7
child 210 98baeb928964
permissions -rw-r--r--
Fix printing components' file names.
     1 # This file adds functions to build glibc
     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_LIBC}" = "glibc" ] || return 0
     7     echo "glibc-${CT_LIBC_VERSION}"
     8     for addon in `do_libc_add_ons_list " "`; do
     9         # NPTL addon is not to be downloaded, in any case
    10         [ "${addon}" = "nptl" ] && continue || true
    11         echo "glibc-${addon}-${CT_LIBC_VERSION}"
    12     done
    13 }
    14 
    15 # Download glibc
    16 do_libc_get() {
    17     # Ah! Not all GNU folks seem stupid. All glibc releases are in the same
    18     # directory. Good. Alas, there is no snapshot there. I'll deal with them
    19     # later on... :-/
    20     CT_GetFile "${CT_LIBC_FILE}" ftp://ftp.gnu.org/gnu/glibc
    21 
    22     # C library addons
    23     for addon in `do_libc_add_ons_list " "`; do
    24         # NPTL addon is not to be downloaded, in any case
    25         [ "${addon}" = "nptl" ] && continue || true
    26         CT_GetFile "${CT_LIBC}-${addon}-${CT_LIBC_VERSION}" ftp://ftp.gnu.org/gnu/glibc
    27     done
    28 
    29     return 0
    30 }
    31 
    32 # Extract glibc
    33 do_libc_extract() {
    34     CT_ExtractAndPatch "${CT_LIBC_FILE}"
    35 
    36     # C library addons
    37     for addon in `do_libc_add_ons_list " "`; do
    38         # NPTL addon is not to be extracted, in any case
    39         [ "${addon}" = "nptl" ] && continue || true
    40         CT_ExtractAndPatch "${CT_LIBC}-${addon}-${CT_LIBC_VERSION}"
    41     done
    42 
    43     return 0
    44 }
    45 
    46 # There is nothing to do for glibc check config
    47 do_libc_check_config() {
    48     :
    49 }
    50 
    51 # This function installs the glibc headers needed to build the core compiler
    52 do_libc_headers() {
    53     # Only need to install bootstrap glibc headers for gcc-3.0 and above?  Or maybe just gcc-3.3 and above?
    54     # See also http://gcc.gnu.org/PR8180, which complains about the need for this step.
    55     grep -q 'gcc-[34]' "${CT_SRC_DIR}/${CT_CC_CORE_FILE}/ChangeLog" || return 0
    56 
    57     CT_DoStep INFO "Installing C library headers"
    58 
    59     mkdir -p "${CT_BUILD_DIR}/build-libc-headers"
    60     cd "${CT_BUILD_DIR}/build-libc-headers"
    61 
    62     CT_DoLog EXTRA "Configuring C library headers"
    63 
    64     # The following three things have to be done to build glibc-2.3.x, but they don't hurt older versions.
    65     # 1. override CC to keep glibc's configure from using $TARGET-gcc. 
    66     # 2. disable linuxthreads, which needs a real cross-compiler to generate tcb-offsets.h properly
    67     # 3. build with gcc 3.2 or later
    68     # Compare these options with the ones used when building glibc for real below - they're different.
    69     # As of glibc-2.3.2, to get this step to work for hppa-linux, you need --enable-hacker-mode
    70     # so when configure checks to make sure gcc has access to the assembler you just built...
    71     # Alternately, we could put ${PREFIX}/${TARGET}/bin on the path.
    72     # Set --build so maybe we don't have to specify "cross-compiling=yes" below (haven't tried yet)
    73     # Note: the warning
    74     # "*** WARNING: Are you sure you do not want to use the `linuxthreads'"
    75     # *** add-on?"
    76     # is ok here, since all we want are the basic headers at this point.
    77     # Override libc_cv_ppc_machine so glibc-cvs doesn't complain
    78     # 'a version of binutils that supports .machine "altivec" is needed'.
    79 
    80     addons_config="--enable-add-ons=`do_libc_add_ons_list ,`"
    81     # We need to remove any threading addon when installing headers
    82     addons_config="${addons_config//nptl/}"
    83     addons_config="${addons_config//linuxthreads/}"
    84     addons_config=`echo "${addons_config}" |sed -r -e 's/,+/,/g; s/^,+//; s/,+$//;'`
    85 
    86     cross_cc=`which "${CT_TARGET}-gcc" || true`
    87     CT_DoLog DEBUG "Using gcc for target: \"${cross_cc}\""
    88     CT_DoLog DEBUG "Extra config passed : \"${addons_config}\""
    89 
    90     libc_cv_ppc_machine=yes                     \
    91     CC=${CT_CC_NATIVE}                          \
    92     "${CT_SRC_DIR}/${CT_LIBC_FILE}/configure"   \
    93         --build="${CT_UNIQ_BUILD}"              \
    94         --host="${CT_TARGET}"                   \
    95         --prefix=/usr                           \
    96         --with-headers="${CT_HEADERS_DIR}"      \
    97         --without-cvs                           \
    98         --disable-sanity-checks                 \
    99         --enable-hacker-mode                    \
   100         ${addons_config}                        \
   101         --without-nptl                          2>&1 |CT_DoLog ALL
   102 
   103     CT_DoLog EXTRA "Installing C library headers"
   104 
   105     if grep -q GLIBC_2.3 "${CT_SRC_DIR}/${CT_LIBC_FILE}/ChangeLog"; then
   106         # glibc-2.3.x passes cross options to $(CC) when generating errlist-compat.c,
   107         # which fails without a real cross-compiler.
   108         # Fortunately, we don't need errlist-compat.c, since we just need .h
   109         # files, so work around this by creating a fake errlist-compat.c and
   110         # satisfying its dependencies.
   111         # Another workaround might be to tell configure to not use any cross
   112         # options to $(CC).
   113         # The real fix would be to get install-headers to not generate
   114         # errlist-compat.c.
   115         # Note: BOOTSTRAP_GCC is used by:
   116         # patches/glibc-2.3.5/glibc-mips-bootstrap-gcc-header-install.patch
   117 
   118         libc_cv_ppc_machine=yes                                 \
   119         make CFLAGS="-O -DBOOTSTRAP_GCC" sysdeps/gnu/errlist.c  2>&1 |CT_DoLog ALL
   120         mkdir -p stdio-common
   121 
   122         # sleep for 2 seconds for benefit of filesystems with lousy time
   123         # resolution, like FAT, so make knows for sure errlist-compat.c doesn't
   124         # need generating
   125         sleep 2
   126         touch stdio-common/errlist-compat.c
   127     fi
   128     # Note: BOOTSTRAP_GCC (see above)
   129     libc_cv_ppc_machine=yes                                 \
   130     make cross-compiling=yes install_root=${CT_SYSROOT_DIR} \
   131          CFLAGS="-O -DBOOTSTRAP_GCC" ${LIBC_SYSROOT_ARG}    \
   132          install-headers                                    2>&1 |CT_DoLog ALL
   133 
   134     # Two headers -- stubs.h and features.h -- aren't installed by install-headers,
   135     # so do them by hand.  We can tolerate an empty stubs.h for the moment.
   136     # See e.g. http://gcc.gnu.org/ml/gcc/2002-01/msg00900.html
   137     mkdir -p "${CT_HEADERS_DIR}/gnu"
   138     touch "${CT_HEADERS_DIR}/gnu/stubs.h"
   139     cp "${CT_SRC_DIR}/${CT_LIBC_FILE}/include/features.h" "${CT_HEADERS_DIR}/features.h"
   140 
   141     # Building the bootstrap gcc requires either setting inhibit_libc, or
   142     # having a copy of stdio_lim.h... see
   143     # http://sources.redhat.com/ml/libc-alpha/2003-11/msg00045.html
   144     cp bits/stdio_lim.h "${CT_HEADERS_DIR}/bits/stdio_lim.h"
   145 
   146     # Following error building gcc-4.0.0's gcj:
   147     #  error: bits/syscall.h: No such file or directory
   148     # solved by following copy; see http://sourceware.org/ml/crossgcc/2005-05/msg00168.html
   149     # but it breaks arm, see http://sourceware.org/ml/crossgcc/2006-01/msg00091.html
   150     [ "${CT_ARCH}" != "arm" ] && cp misc/syscall-list.h "${CT_HEADERS_DIR}/bits/syscall.h" || true
   151 
   152     # Those headers are to be manually copied so gcc can build properly
   153     pthread_h=
   154     pthreadtypes_h=
   155     case "${CT_THREADS}" in
   156         nptl)
   157             # NOTE: for some archs, the pathes are different, but they are not
   158             # supported by ct-ng right now. See original crosstool when they are.
   159             pthread_h="${CT_SRC_DIR}/${CT_LIBC_FILE}/${CT_THREADS}/sysdeps/pthread/pthread.h"
   160             pthreadtypes_h="${CT_SRC_DIR}/${CT_LIBC_FILE}/nptl/sysdeps/unix/sysv/linux/${CT_KERNEL_ARCH}/bits/pthreadtypes.h"
   161             ;;
   162         linuxthreads)
   163             pthread_h="${CT_SRC_DIR}/${CT_LIBC_FILE}/${CT_THREADS}/sysdeps/pthread/pthread.h"
   164             pthreadtypes_h="${CT_SRC_DIR}/${CT_LIBC_FILE}/linuxthreads/sysdeps/pthread/bits/pthreadtypes.h"
   165             ;;
   166     esac
   167     if [ -n "${pthread_h}" ]; then
   168         cp -v "${pthread_h}" "${CT_HEADERS_DIR}/pthread.h" 2>&1 |CT_DoLog ALL
   169     fi
   170     if [ -n "${pthreadtypes_h}" ]; then
   171         cp -v "${pthreadtypes_h}" "${CT_HEADERS_DIR}/bits/pthreadtypes.h" 2>&1 |CT_DoLog ALL
   172     fi
   173 
   174     CT_EndStep
   175 }
   176 
   177 # Build and install start files
   178 do_libc_start_files() {
   179     # Needed only in the NPTL case. Otherwise, return.
   180     [ "${CT_THREADS}" = "nptl" ] || return 0
   181 
   182     CT_DoStep INFO "Installing C library start files"
   183 
   184     mkdir -p "${CT_BUILD_DIR}/build-libc-startfiles"
   185     cd "${CT_BUILD_DIR}/build-libc-startfiles"
   186 
   187     CT_DoLog EXTRA "Configuring C library"
   188 
   189     # Add some default glibc config options if not given by user.
   190     extra_config=""
   191     case "${CT_LIBC_GLIBC_EXTRA_CONFIG}" in
   192         *enable-kernel*) ;;
   193         *) extra_config="${extra_config} --enable-kernel=`echo ${CT_KERNEL_VERSION} |sed -r -e 's/^([^.]+\.[^.]+\.[^.]+)(|\.[^.]+)$/\1/;'`"
   194     esac
   195     case "${CT_LIBC_GLIBC_EXTRA_CONFIG}" in
   196         *-tls*) ;;
   197         *) extra_config="${extra_config} --with-tls"
   198     esac
   199     case "${CT_SHARED_LIBS}" in
   200         y) extra_config="${extra_config} --enable-shared";;
   201         *) extra_config="${extra_config} --disable-shared";;
   202     esac
   203     case "${CT_LIBC_GLIBC_EXTRA_CONFIG}" in
   204         *--with-fp*) ;;
   205         *--without-fp*) ;;
   206         *)  case "${CT_ARCH_FLOAT_HW},${CT_ARCH_FLOAT_SW}" in
   207                 y,) extra_config="${extra_config} --with-fp";;
   208                 ,y) extra_config="${extra_config} --without-fp";;
   209             esac;;
   210     esac
   211     # Obviously, we want threads, as we come here only for NPTL
   212     extra_config="${extra_config} --with-__thread"
   213 
   214     addons_config="--enable-add-ons=`do_libc_add_ons_list ,`"
   215     extra_config="${extra_config} ${addons_config}"
   216 
   217     # Add some default CC args
   218     extra_cc_args="${CT_CFLAGS_FOR_HOST}"
   219     case "${CT_LIBC_EXTRA_CC_ARGS}" in
   220         *-mbig-endian*) ;;
   221         *-mlittle-endian*) ;;
   222         *)  case "${CT_ARCH_BE},${CT_ARCH_LE}" in
   223                 y,) extra_cc_args="${extra_cc_args} -mbig-endian";;
   224                 ,y) extra_cc_args="${extra_cc_args} -mlittle-endian";;
   225             esac;;
   226     esac
   227 
   228     cross_cc=`which "${CT_TARGET}-gcc" || true`
   229     CT_DoLog DEBUG "Using gcc for target    : \"${cross_cc}\""
   230     CT_DoLog DEBUG "Configuring with addons : \"`do_libc_add_ons_list ,`\""
   231     CT_DoLog DEBUG "Extra config args passed: \"${extra_config}\""
   232     CT_DoLog DEBUG "Extra CC args passed    : \"${extra_cc_args}\""
   233 
   234     # sh3 and sh4 really need to set configparms as of gcc-3.4/glibc-2.3.2
   235     # note: this is awkward, doesn't work well if you need more than one line in configparms
   236     echo ${CT_LIBC_GLIBC_CONFIGPARMS} > configparms
   237 
   238     echo "libc_cv_forced_unwind=yes" > config.cache
   239     echo "libc_cv_c_cleanup=yes" >> config.cache
   240 
   241     # Please see the comment for the configure step in do_libc().
   242 
   243     BUILD_CC=${CT_CC_NATIVE}                                        \
   244     CFLAGS="${CT_TARGET_CFLAGS} ${CT_LIBC_GLIBC_EXTRA_CFLAGS} -O"   \
   245     CC="${CT_TARGET}-gcc ${CT_LIBC_EXTRA_CC_ARGS} ${extra_cc_args}" \
   246     AR=${CT_TARGET}-ar                                              \
   247     RANLIB=${CT_TARGET}-ranlib                                      \
   248     "${CT_SRC_DIR}/${CT_LIBC_FILE}/configure"                       \
   249         --prefix=/usr                                               \
   250         --build="${CT_UNIQ_BUILD}"                                  \
   251         --host=${CT_TARGET}                                         \
   252         --without-cvs                                               \
   253         --disable-profile                                           \
   254         --disable-debug                                             \
   255         --without-gd                                                \
   256         --with-headers="${CT_HEADERS_DIR}"                          \
   257         --cache-file=config.cache                                   \
   258         ${extra_config}                                             \
   259         ${CT_LIBC_GLIBC_EXTRA_CONFIG}                               2>&1 |CT_DoLog ALL
   260 
   261 
   262     #TODO: should check whether slibdir has been set in configparms to */lib64
   263     #      and copy the startfiles into the appropriate libdir.
   264     make csu/subdir_lib 2>&1 |CT_DoLog ALL
   265 
   266     if [ "${CT_USE_SYSROOT}" = "y" ]; then
   267         cp -fp csu/crt[1in].o "${CT_SYSROOT_DIR}/usr/lib/"
   268     else
   269         cp -fp csu/crt[1in].o "${CT_SYSROOT_DIR}/lib/"
   270     fi
   271 
   272     CT_EndStep
   273 }
   274 
   275 # This function builds and install the full glibc
   276 do_libc() {
   277     CT_DoStep INFO "Installing C library"
   278 
   279     mkdir -p "${CT_BUILD_DIR}/build-libc"
   280     cd "${CT_BUILD_DIR}/build-libc"
   281 
   282     CT_DoLog EXTRA "Configuring C library"
   283 
   284     # Add some default glibc config options if not given by user.
   285     # We don't need to be conditional on wether the user did set different
   286     # values, as they CT_LIBC_GLIBC_EXTRA_CONFIG is passed after extra_config
   287 
   288     extra_config="--enable-kernel=`echo ${CT_KERNEL_VERSION} |sed -r -e 's/^([^.]+\.[^.]+\.[^.]+)(|\.[^.]+)$/\1/;'`"
   289 
   290     case "${CT_THREADS}" in
   291         nptl)           extra_config="${extra_config} --with-__thread --with-tls";;
   292         linuxthreads)   extra_config="${extra_config} --with-__thread --without-tls --without-nptl";;
   293         none)           extra_config="${extra_config} --without-__thread --without-nptl"
   294                         case "${CT_LIBC_GLIBC_EXTRA_CONFIG}" in
   295                             *-tls*) ;;
   296                             *) extra_config="${extra_config} --without-tls";;
   297                         esac
   298                         ;;
   299     esac
   300 
   301     case "${CT_SHARED_LIBS}" in
   302         y) extra_config="${extra_config} --enable-shared";;
   303         *) extra_config="${extra_config} --disable-shared";;
   304     esac
   305 
   306     case "${CT_ARCH_FLOAT_HW},${CT_ARCH_FLOAT_SW}" in
   307         y,) extra_config="${extra_config} --with-fp";;
   308         ,y) extra_config="${extra_config} --without-fp";;
   309     esac
   310 
   311     case "`do_libc_add_ons_list ,`" in
   312         "") ;;
   313         *)  extra_config="${extra_config} --enable-add-ons=`do_libc_add_ons_list ,`";;
   314     esac
   315 
   316 
   317     # Add some default CC args
   318     if [ "${CT_USE_PIPES}" = "y" ]; then
   319         extra_cc_args="-pipe"
   320     fi
   321     case "${CT_ARCH_BE},${CT_ARCH_LE}" in
   322         y,) extra_cc_args="${extra_cc_args} -mbig-endian";;
   323         ,y) extra_cc_args="${extra_cc_args} -mlittle-endian";;
   324     esac
   325 
   326     cross_cc=`which "${CT_TARGET}-gcc" || true`
   327     CT_DoLog DEBUG "Using gcc for target    : \"${cross_cc}\""
   328     CT_DoLog DEBUG "Configuring with addons : \"`do_libc_add_ons_list ,`\""
   329     CT_DoLog DEBUG "Extra config args passed: \"${extra_config}\""
   330     CT_DoLog DEBUG "Extra CC args passed    : \"${extra_cc_args}\""
   331 
   332     # sh3 and sh4 really need to set configparms as of gcc-3.4/glibc-2.3.2
   333     # note: this is awkward, doesn't work well if you need more than one line in configparms
   334     echo ${CT_LIBC_GLIBC_CONFIGPARMS} > configparms
   335 
   336     # For glibc 2.3.4 and later we need to set some autoconf cache
   337     # variables, because nptl/sysdeps/pthread/configure.in does not
   338     # work when cross-compiling.
   339     if [ "${CT_THREADS}" = "nptl" ]; then
   340         echo libc_cv_forced_unwind=yes
   341         echo libc_cv_c_cleanup=yes
   342     fi >config.cache
   343 
   344     # Configure with --prefix the way we want it on the target...
   345     # There are a whole lot of settings here.  You'll probably want
   346     # to read up on what they all mean, and customize a bit, possibly by setting GLIBC_EXTRA_CONFIG
   347     # Compare these options with the ones used when installing the glibc headers above - they're different.
   348     # Adding "--without-gd" option to avoid error "memusagestat.c:36:16: gd.h: No such file or directory" 
   349     # See also http://sources.redhat.com/ml/libc-alpha/2000-07/msg00024.html. 
   350     # Set BUILD_CC, or you won't be able to build datafiles
   351     # Set --build, else glibc-2.3.2 will think you're not cross-compiling, and try to run the test programs
   352 
   353     # OK. I'm fed up with those folks telling me what I should do.
   354     # I don't configure nptl? Well, maybe that's purposedly because
   355     # I don't want nptl! --disable-sanity-checks will shut up those
   356     # silly messages. GNU folks again, he?
   357 
   358     BUILD_CC=${CT_CC_NATIVE}                                        \
   359     CFLAGS="${CT_TARGET_CFLAGS} ${CT_LIBC_GLIBC_EXTRA_CFLAGS} -O"   \
   360     CC="${CT_TARGET}-gcc ${extra_cc_args} ${CT_LIBC_EXTRA_CC_ARGS}" \
   361     AR=${CT_TARGET}-ar                                              \
   362     RANLIB=${CT_TARGET}-ranlib                                      \
   363     "${CT_SRC_DIR}/${CT_LIBC_FILE}/configure"                       \
   364         --prefix=/usr                                               \
   365         --build=${CT_UNIQ_BUILD}                                    \
   366         --host=${CT_TARGET}                                         \
   367         --without-cvs                                               \
   368         --disable-profile                                           \
   369         --disable-debug                                             \
   370         --without-gd                                                \
   371         --disable-sanity-checks                                     \
   372         --cache-file=config.cache                                   \
   373         --with-headers="${CT_HEADERS_DIR}"                          \
   374         ${extra_config}                                             \
   375         ${CT_LIBC_GLIBC_EXTRA_CONFIG}                               2>&1 |CT_DoLog ALL
   376 
   377     if grep -l '^install-lib-all:' "${CT_SRC_DIR}/${CT_LIBC_FILE}/Makerules" > /dev/null; then
   378         # nptl-era glibc.
   379         # If the install-lib-all target (which is added by our make-install-lib-all.patch)
   380         # is present, it means we're building glibc-2.3.3 or later, and we can't
   381         # build programs yet, as they require libeh, which won't be installed
   382         # until full build of gcc
   383         GLIBC_INITIAL_BUILD_RULE=lib
   384         GLIBC_INITIAL_INSTALL_RULE="install-lib-all install-headers"
   385         GLIBC_INSTALL_APPS_LATER=yes
   386     else
   387         # classic glibc.  
   388         # We can build and install everything with the bootstrap compiler.
   389         GLIBC_INITIAL_BUILD_RULE=all
   390         GLIBC_INITIAL_INSTALL_RULE=install
   391         GLIBC_INSTALL_APPS_LATER=no
   392     fi
   393 
   394     # If this fails with an error like this:
   395     # ...  linux/autoconf.h: No such file or directory 
   396     # then you need to set the KERNELCONFIG variable to point to a .config file for this arch.
   397     # The following architectures are known to need kernel .config: alpha, arm, ia64, s390, sh, sparc
   398     # Note: LD and RANLIB needed by glibc-2.1.3's c_stub directory, at least on macosx
   399     # No need for PARALLELMFLAGS here, Makefile already reads this environment variable
   400     CT_DoLog EXTRA "Building C library"
   401     make LD=${CT_TARGET}-ld             \
   402          RANLIB=${CT_TARGET}-ranlib     \
   403          ${GLIBC_INITIAL_BUILD_RULE}    2>&1 |CT_DoLog ALL
   404 
   405     CT_DoLog EXTRA "Installing C library"
   406     make install_root="${CT_SYSROOT_DIR}"   \
   407          ${LIBC_SYSROOT_ARG}                \
   408          ${GLIBC_INITIAL_INSTALL_RULE}      2>&1 |CT_DoLog ALL
   409 
   410     # This doesn't seem to work when building a crosscompiler,
   411     # as it tries to execute localedef using the just-built ld.so!?
   412     #CT_DoLog EXTRA "Installing locales"
   413     #make localedata/install-locales install_root=${SYSROOT} 2>&1 |CT_DoLog ALL
   414 
   415     # Fix problems in linker scripts.
   416     #
   417     # 1. Remove absolute paths
   418     # Any file in a list of known suspects that isn't a symlink is assumed to be a linker script.
   419     # FIXME: test -h is not portable
   420     # FIXME: probably need to check more files than just these three...
   421     # Need to use sed instead of just assuming we know what's in libc.so because otherwise alpha breaks
   422     #
   423     # 2. Remove lines containing BUG per http://sources.redhat.com/ml/bug-glibc/2003-05/msg00055.html,
   424     # needed to fix gcc-3.2.3/glibc-2.3.2 targeting arm
   425     #
   426     # To make "strip *.so.*" not fail (ptxdist does this), rename to .so_orig rather than .so.orig
   427     CT_DoLog EXTRA "Fixing C library linker scripts"
   428     for file in libc.so libpthread.so libgcc_s.so; do
   429         for dir in lib lib64 usr/lib usr/lib64; do
   430             if [ -f "${CT_SYSROOT_DIR}/${dir}/${file}" -a ! -L ${CT_SYSROOT_DIR}/$lib/$file ]; then
   431                 cp "${CT_SYSROOT_DIR}/${dir}/${file}" "${CT_SYSROOT_DIR}/${dir}/${file}_orig"
   432                 CT_DoLog DEBUG "Fixing \"${CT_SYS_ROOT_DIR}/${dir}/${file}\""
   433                 sed -i -r -e 's,/usr/lib/,,g;
   434                               s,/usr/lib64/,,g;
   435                               s,/lib/,,g;
   436                               s,/lib64/,,g;
   437                               /BUG in libc.scripts.output-format.sed/d' "${CT_SYSROOT_DIR}/${dir}/${file}"
   438             fi
   439         done
   440     done
   441 
   442     CT_EndStep
   443 }
   444 
   445 # This function finishes the glibc install
   446 do_libc_finish() {
   447     # Finally, build and install glibc programs, now that libeh (if any) is installed
   448     # Don't do this unless needed, 'cause it causes glibc-2.{1.3,2.2} to fail here with
   449     # .../gcc-3.4.1-glibc-2.1.3/build-glibc/libc.so.6: undefined reference to `__deregister_frame_info'
   450     # .../gcc-3.4.1-glibc-2.1.3/build-glibc/libc.so.6: undefined reference to `__register_frame_info'
   451     [ "${GLIBC_INSTALL_APPS_LATER}" = "yes" ] || return 0
   452 
   453     CT_DoStep INFO "Finishing C library"
   454 
   455     cd "${CT_BUILD_DIR}/build-libc"
   456 
   457     CT_DoLog EXTRA "Re-building C library"
   458     make LD=${CT_TARGET}-ld RANLIB=${CT_TARGET}-ranlib 2>&1 |CT_DoLog ALL
   459 
   460     CT_DoLog EXTRA "Installing missing C library components"
   461     # note: should do full install and then fix linker scripts, but this is faster
   462     for t in bin rootsbin sbin data others; do
   463         make install_root="${CT_SYSROOT_DIR}"   \
   464              ${LIBC_SYSROOT_ARG}                \
   465              install-${t}                       2>&1 |CT_DoLog ALL
   466     done
   467 
   468     CT_EndStep
   469 }
   470 
   471 # Build up the addons list, separated with $1
   472 do_libc_add_ons_list() {
   473     local sep="$1"
   474     local addons_list=`echo "${CT_LIBC_ADDONS_LIST//,/${sep}}" |tr -s ,`
   475     case "${CT_THREADS}" in
   476         none)   ;;
   477         *)      addons_list="${addons_list}${sep}${CT_THREADS}";;
   478     esac
   479     [ "${CT_LIBC_GLIBC_USE_PORTS}" = "y" ] && addons_list="${addons_list}${sep}ports"
   480     addons_list="${addons_list%%${sep}}"
   481     echo "${addons_list##${sep}}"
   482 }
   483