scripts/build/libc_uClibc.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Jun 16 18:08:14 2007 +0000 (2007-06-16)
changeset 161 be4484f10ac7
parent 136 22b5ef41df97
child 164 e78c0b2bc057
permissions -rw-r--r--
Add a function to print each component's filename: this eases building the tarball of the generated toolchain.
Hard-link the libfloat tarball instead of soft-link: this also eases building the afore-mentioned tarball.
yann@1
     1
# This file declares functions to install the uClibc C library
yann@1
     2
# Copyright 2007 Yann E. MORIN
yann@1
     3
# Licensed under the GPL v2. See COPYING in the root of this package
yann@1
     4
yann@161
     5
do_print_filename() {
yann@161
     6
    [ "${CT_LIBC}" = "uClibc" ] || return 0
yann@161
     7
    echo "${CT_LIBC_FILE}"
yann@161
     8
    [ "${CT_LIBC_UCLIBC_LOCALES}" = "y" ] && echo "uClibc-locale-030818" || true
yann@161
     9
}
yann@161
    10
yann@63
    11
# Download uClibc
yann@63
    12
do_libc_get() {
yann@63
    13
	libc_src="http://www.uclibc.org/downloads
yann@63
    14
              http://www.uclibc.org/downloads/snapshots
yann@63
    15
              http://www.uclibc.org/downloads/old-releases"
yann@63
    16
    # For uClibc, we have almost every thing: releases, and snapshots
yann@63
    17
    # for the last month or so. We'll have to deal with svn revisions
yann@63
    18
    # later...
yann@63
    19
    CT_GetFile "${CT_LIBC_FILE}" ${libc_src}
yann@63
    20
    # uClibc locales
yann@161
    21
    [ "${CT_LIBC_UCLIBC_LOCALES}" = "y" ] && CT_GetFile "uClibc-locale-030818" ${libc_src} || true
yann@64
    22
yann@64
    23
    return 0
yann@63
    24
}
yann@63
    25
yann@63
    26
# Extract uClibc
yann@63
    27
do_libc_extract() {
yann@63
    28
    CT_ExtractAndPatch "${CT_LIBC_FILE}"
yann@63
    29
    # uClibc locales
yann@161
    30
    [ "${CT_LIBC_UCLIBC_LOCALES}" = "y" ] && CT_ExtractAndPatch "uClibc-locale-030818" || true
yann@64
    31
yann@64
    32
    return 0
yann@63
    33
}
yann@1
    34
yann@1
    35
# Check that uClibc has been previously configured
yann@1
    36
do_libc_check_config() {
yann@1
    37
    CT_DoStep INFO "Checking C library configuration"
yann@1
    38
yann@1
    39
    CT_TestOrAbort "You did not provide a uClibc config file!" -n "${CT_LIBC_UCLIBC_CONFIG_FILE}" -a -f "${CT_LIBC_UCLIBC_CONFIG_FILE}"
yann@1
    40
yann@114
    41
    cp "${CT_LIBC_UCLIBC_CONFIG_FILE}" "${CT_SRC_DIR}/uClibc.config"
yann@1
    42
yann@1
    43
    if egrep '^KERNEL_SOURCE=' "${CT_LIBC_UCLIBC_CONFIG_FILE}" >/dev/null 2>&1; then
yann@1
    44
        CT_DoLog WARN "Your uClibc version refers to the kernel _sources_, which is bad."
yann@1
    45
        CT_DoLog WARN "I can't guarantee that our little hack will work. Please try to upgrade."
yann@1
    46
    fi
yann@1
    47
yann@1
    48
    CT_DoLog EXTRA "Munging uClibc configuration"
yann@114
    49
    mungeuClibcConfig "${CT_SRC_DIR}/uClibc.config"
yann@1
    50
yann@1
    51
    CT_EndStep
yann@1
    52
}
yann@1
    53
yann@1
    54
# This functions installs uClibc's headers
yann@1
    55
do_libc_headers() {
yann@1
    56
    # Only need to install bootstrap uClibc headers for gcc-3.0 and above?  Or maybe just gcc-3.3 and above?
yann@1
    57
    # See also http://gcc.gnu.org/PR8180, which complains about the need for this step.
yann@1
    58
    grep -q 'gcc-[34]' "${CT_SRC_DIR}/${CT_CC_CORE_FILE}/ChangeLog" || return 0
yann@1
    59
yann@1
    60
    CT_DoStep INFO "Installing C library headers"
yann@1
    61
yann@1
    62
    mkdir -p "${CT_BUILD_DIR}/build-libc-headers"
yann@1
    63
    cd "${CT_BUILD_DIR}/build-libc-headers"
yann@1
    64
yann@1
    65
    # Simply copy files until uClibc has the ablity to build out-of-tree
yann@1
    66
    CT_DoLog EXTRA "Copying sources to build dir"
yann@1
    67
    { cd "${CT_SRC_DIR}/${CT_LIBC_FILE}"; tar cf - .; } |tar xf -
yann@1
    68
yann@1
    69
    # Retrieve the config file
yann@114
    70
    cp "${CT_SRC_DIR}/uClibc.config" .config
yann@1
    71
yann@1
    72
    # uClibc uses the CROSS environment variable as a prefix to the
yann@1
    73
    # compiler tools to use.  Setting it to the empty string forces
yann@1
    74
    # use of the native build host tools, which we need at this
yann@1
    75
    # stage, as we don't have target tools yet.
yann@1
    76
    CT_DoLog EXTRA "Applying configuration"
yann@78
    77
    CT_DoYes "" |make CROSS= PREFIX="${CT_SYSROOT_DIR}/" oldconfig 2>&1 |CT_DoLog ALL
yann@1
    78
yann@1
    79
    CT_DoLog EXTRA "Building headers"
yann@78
    80
    make ${PARALLELMFLAGS} CROSS= PREFIX="${CT_SYSROOT_DIR}/" headers 2>&1 |CT_DoLog ALL
yann@1
    81
yann@1
    82
    CT_DoLog EXTRA "Installing headers"
yann@78
    83
    make CROSS= PREFIX="${CT_SYSROOT_DIR}/" install_dev 2>&1 |CT_DoLog ALL
yann@1
    84
yann@1
    85
    CT_EndStep
yann@1
    86
}
yann@1
    87
yann@136
    88
# Build and install start files
yann@136
    89
do_libc_start_files() {
yann@136
    90
    :
yann@136
    91
}
yann@136
    92
yann@1
    93
# This function build and install the full uClibc
yann@1
    94
do_libc() {
yann@1
    95
    CT_DoStep INFO "Installing C library"
yann@1
    96
yann@1
    97
    mkdir -p "${CT_BUILD_DIR}/build-libc"
yann@1
    98
    cd "${CT_BUILD_DIR}/build-libc"
yann@1
    99
yann@1
   100
    # Simply copy files until uClibc has the ablity to build out-of-tree
yann@1
   101
    CT_DoLog EXTRA "Copying sources to build dir"
yann@1
   102
    { cd "${CT_SRC_DIR}/${CT_LIBC_FILE}"; tar cf - .; } |tar xf -
yann@1
   103
yann@1
   104
    # Retrieve the config file
yann@114
   105
    cp "${CT_SRC_DIR}/uClibc.config" .config
yann@1
   106
yann@1
   107
    # uClibc uses the CROSS environment variable as a prefix to the compiler
yann@1
   108
    # tools to use.  The newly built tools should be in our path, so we need
yann@1
   109
    # only give the correct name for them.
yann@1
   110
    # Note about CFLAGS: In uClibc, CFLAGS are generated by Rules.mak,
yann@1
   111
    # depending  on the configuration of the library. That is, they are tailored
yann@1
   112
    # to best fit the target. So it is useless and seems to be a bad thing to
yann@1
   113
    # use LIBC_EXTRA_CFLAGS here.
yann@1
   114
    CT_DoLog EXTRA "Applying configuration"
yann@1
   115
    CT_DoYes "" |make ${PARALLELMFLAGS}             \
yann@1
   116
                      CROSS=${CT_TARGET}-           \
yann@1
   117
                      PREFIX="${CT_SYSROOT_DIR}/"   \
yann@78
   118
                      oldconfig                     2>&1 |CT_DoLog ALL
yann@1
   119
yann@1
   120
    # We do _not_ want to strip anything for now, in case we specifically
yann@1
   121
    # asked for a debug toolchain, thus the STRIPTOOL= assignment
yann@1
   122
    CT_DoLog EXTRA "Building C library"
yann@1
   123
    make ${PARALLELMFLAGS}              \
yann@1
   124
         CROSS=${CT_TARGET}-            \
yann@1
   125
         PREFIX="${CT_SYSROOT_DIR}/"    \
yann@1
   126
         STRIPTOOL=true                 \
yann@78
   127
         all                            2>&1 |CT_DoLog ALL
yann@1
   128
yann@1
   129
    # YEM-FIXME: we want to install libraries in $SYSROOT/lib, but we don't want
yann@1
   130
    # to install headers in $SYSROOT/include, thus making only install_runtime.
yann@1
   131
    # Plus, the headers were previously installed earlier with install_dev, so
yann@1
   132
    # all should be well. Unfortunately, the install_dev target does not install
yann@1
   133
    # crti.o and consorts... :-( So reverting to target 'install'.
yann@1
   134
    # Note: PARALLELMFLAGS is not usefull for installation.
yann@1
   135
    # We do _not_ want to strip anything for now, in case we specifically
yann@1
   136
    # asked for a debug toolchain, thus the STRIPTOOL= assignment
yann@1
   137
    CT_DoLog EXTRA "Installing C library"
yann@1
   138
    make CROSS=${CT_TARGET}-            \
yann@1
   139
         PREFIX="${CT_SYSROOT_DIR}/"    \
yann@1
   140
         STRIPTOOL=true                 \
yann@78
   141
         install                        2>&1 |CT_DoLog ALL
yann@1
   142
yann@1
   143
    CT_EndStep
yann@1
   144
}
yann@1
   145
yann@1
   146
# This function is used to install those components needing the final C compiler
yann@1
   147
do_libc_finish() {
yann@78
   148
    :
yann@1
   149
}
yann@1
   150
yann@1
   151
# Initialises the .config file to sensible values
yann@1
   152
mungeuClibcConfig() {
yann@1
   153
    config_file="$1"
yann@1
   154
    munge_file="${CT_BUILD_DIR}/munge-uClibc-config.sed"
yann@1
   155
yann@108
   156
    # Hack our target in the config file.
yann@108
   157
    # Also remove stripping: its the responsibility of the
yann@108
   158
    # firmware builder to strip or not.
yann@1
   159
    cat > "${munge_file}" <<-ENDSED
yann@1
   160
s/^(TARGET_.*)=y$/# \\1 is not set/
yann@1
   161
s/^# TARGET_${CT_KERNEL_ARCH} is not set/TARGET_${CT_KERNEL_ARCH}=y/
yann@1
   162
s/^TARGET_ARCH=".*"/TARGET_ARCH="${CT_KERNEL_ARCH}"/
yann@108
   163
s/.*(DOSTRIP).*/# \\1 is not set/
yann@1
   164
ENDSED
yann@1
   165
yann@108
   166
    # Accomodate for old and new uClibc versions, where the
yann@108
   167
    # way to select between big/little endian has changed
yann@1
   168
    case "${CT_ARCH_BE},${CT_ARCH_LE}" in
yann@1
   169
        y,) cat >> "${munge_file}" <<-ENDSED
yann@108
   170
s/.*(ARCH_LITTLE_ENDIAN).*/# \\1 is not set/
yann@1
   171
s/.*(ARCH_BIG_ENDIAN).*/\\1=y/
yann@108
   172
s/.*(ARCH_WANTS_LITTLE_ENDIAN).*/# \\1 is not set/
yann@108
   173
s/.*(ARCH_WANTS_BIG_ENDIAN).*/\\1=y/
yann@1
   174
ENDSED
yann@1
   175
        ;;
yann@1
   176
        ,y) cat >> "${munge_file}" <<-ENDSED
yann@108
   177
s/.*(ARCH_LITTLE_ENDIAN).*/\\1=y/
yann@1
   178
s/.*(ARCH_BIG_ENDIAN).*/# \\1 is not set/
yann@108
   179
s/.*(ARCH_WANTS_LITTLE_ENDIAN).*/\\1=y/
yann@108
   180
s/.*(ARCH_WANTS_BIG_ENDIAN).*/# \\1 is not set/
yann@1
   181
ENDSED
yann@1
   182
        ;;
yann@1
   183
    esac
yann@1
   184
yann@108
   185
    # Accomodate for old and new uClibc version, where the
yann@108
   186
    # way to select between hard/soft float has changed
yann@1
   187
    case "${CT_ARCH_FLOAT_HW},${CT_ARCH_FLOAT_SW}" in
yann@1
   188
        y,) cat >> "${munge_file}" <<-ENDSED
yann@1
   189
s/.*(HAS_FPU).*/\\1=y/
yann@108
   190
s/.*(UCLIBC_HAS_FPU).*/\\1=y/
yann@1
   191
ENDSED
yann@1
   192
            ;;
yann@1
   193
        ,y) cat >> "${munge_file}" <<-ENDSED
yann@1
   194
s/.*(HAS_FPU).*/\\# \\1 is not set/
yann@108
   195
s/.*(UCLIBC_HAS_FPU).*/# \\1 is not set/
yann@1
   196
ENDSED
yann@1
   197
            ;;
yann@1
   198
    esac
yann@1
   199
yann@1
   200
    # Change paths to work with crosstool
yann@1
   201
    # From http://www.uclibc.org/cgi-bin/viewcvs.cgi?rev=16846&view=rev
yann@1
   202
    #  " we just want the kernel headers, not the whole kernel source ...
yann@1
   203
    #  " so people may need to update their paths slightly
yann@1
   204
    quoted_kernel_source=`echo "${CT_HEADERS_DIR}" | sed -r -e 's,/include/?$,,; s,/,\\\\/,g;'`
yann@1
   205
    quoted_headers_dir=`echo ${CT_HEADERS_DIR} | sed -r -e 's,/,\\\\/,g;'`
yann@1
   206
    # CROSS_COMPILER_PREFIX is left as is, as the CROSS parameter is forced on the command line
yann@1
   207
    # DEVEL_PREFIX is left as '/usr/' because it is post-pended to $PREFIX, wich is the correct value of ${PREFIX}/${TARGET}
yann@1
   208
    # Some (old) versions of uClibc use KERNEL_SOURCE (which is _wrong_), and
yann@1
   209
    # newer versions use KERNEL_HEADERS (which is right). See:
yann@1
   210
    cat >> "${munge_file}" <<-ENDSED
yann@1
   211
s/^DEVEL_PREFIX=".*"/DEVEL_PREFIX="\\/usr\\/"/
yann@1
   212
s/^RUNTIME_PREFIX=".*"/RUNTIME_PREFIX="\\/"/
yann@1
   213
s/^SHARED_LIB_LOADER_PREFIX=.*/SHARED_LIB_LOADER_PREFIX="\\/lib\\/"/
yann@1
   214
s/^KERNEL_SOURCE=".*"/KERNEL_SOURCE="${quoted_kernel_source}"/
yann@1
   215
s/^KERNEL_HEADERS=".*"/KERNEL_HEADERS="${quoted_headers_dir}"/
yann@1
   216
s/^UCLIBC_DOWNLOAD_PREGENERATED_LOCALE=y/\\# UCLIBC_DOWNLOAD_PREGENERATED_LOCALE is not set/
yann@1
   217
ENDSED
yann@1
   218
yann@1
   219
    if [ "${CT_USE_PIPES}" = "y" ]; then
yann@108
   220
        if grep UCLIBC_EXTRA_CFLAGS extra/Configs/Config.in >/dev/null 2>&1; then
yann@108
   221
            # Good, there is special provision for such things as -pipe!
yann@108
   222
            cat >> "${munge_file}" <<-ENDSED
yann@108
   223
s/^(UCLIBC_EXTRA_CFLAGS=".*)"$/\\1 -pipe"/
yann@108
   224
ENDSED
yann@108
   225
        else
yann@108
   226
            # Hack our -pipe into WARNINGS, which will be internally incorporated to
yann@108
   227
            # CFLAGS. This a dirty hack, but yet needed
yann@108
   228
            cat >> "${munge_file}" <<-ENDSED
yann@1
   229
s/^(WARNINGS=".*)"$/\\1 -pipe"/
yann@1
   230
ENDSED
yann@108
   231
        fi
yann@1
   232
    fi
yann@1
   233
yann@1
   234
    # Force on options needed for C++ if we'll be making a C++ compiler.
yann@1
   235
    # Note that the two PREGEN_LOCALE and the XLOCALE lines may be missing
yann@1
   236
    # entirely if LOCALE is not set.  If LOCALE was already set, we'll
yann@1
   237
    # assume the user has already made all the appropriate generation
yann@1
   238
    # arrangements.  Note that having the uClibc Makefile download the
yann@1
   239
    # pregenerated locales is not compatible with crosstool; besides,
yann@1
   240
    # crosstool downloads them as part of getandpatch.sh.
yann@1
   241
    if [ "${CT_CC_LANG_CXX}" = "y" ]; then
yann@1
   242
        cat >> "${munge_file}" <<-ENDSED
yann@1
   243
s/^# DO_C99_MATH is not set/DO_C99_MATH=y/
yann@1
   244
s/^# UCLIBC_CTOR_DTOR is not set/UCLIBC_CTOR_DTOR=y/
yann@1
   245
# Add these three lines when doing C++?
yann@1
   246
#s/^# UCLIBC_HAS_WCHAR is not set/UCLIBC_HAS_WCHAR=y/
yann@1
   247
#s/^# UCLIBC_HAS_LOCALE is not set/UCLIBC_HAS_LOCALE=y\\nUCLIBC_PREGENERATED_LOCALE_DATA=y\\n\\# UCLIBC_DOWNLOAD_PREGENERATED_LOCALE_DATA is not set\\n\\# UCLIBC_HAS_XLOCALE is not set/
yann@1
   248
#s/^# UCLIBC_HAS_GNU_GETOPT is not set/UCLIBC_HAS_GNU_GETOPT=y/
yann@1
   249
ENDSED
yann@1
   250
    fi
yann@1
   251
yann@1
   252
    # Force on debug options if asked for
yann@1
   253
    case "${CT_LIBC_UCLIBC_DEBUG_LEVEL}" in
yann@1
   254
      0)
yann@1
   255
        cat >>"${munge_file}" <<-ENDSED
yann@1
   256
s/^PTHREADS_DEBUG_SUPPORT=y/# PTHREADS_DEBUG_SUPPORT is not set/
yann@1
   257
s/^DODEBUG=y/# DODEBUG is not set/
yann@1
   258
s/^DODEBUG_PT=y/# DODEBUG_PT is not set/
yann@1
   259
s/^DOASSERTS=y/# DOASSERTS is not set/
yann@1
   260
s/^SUPPORT_LD_DEBUG=y/# SUPPORT_LD_DEBUG is not set/
yann@1
   261
s/^SUPPORT_LD_DEBUG_EARLY=y/# SUPPORT_LD_DEBUG_EARLY is not set/
yann@108
   262
s/^UCLIBC_MALLOC_DEBUGGING=y/# UCLIBC_MALLOC_DEBUGGING is not set/
yann@1
   263
ENDSED
yann@1
   264
        ;;
yann@1
   265
      1)
yann@1
   266
        cat >>"${munge_file}" <<-ENDSED
yann@1
   267
s/^# PTHREADS_DEBUG_SUPPORT is not set.*/PTHREADS_DEBUG_SUPPORT=y/
yann@1
   268
s/^# DODEBUG is not set.*/DODEBUG=y/
yann@1
   269
s/^DODEBUG_PT=y/# DODEBUG_PT is not set/
yann@1
   270
s/^DOASSERTS=y/# DOASSERTS is not set/
yann@1
   271
s/^SUPPORT_LD_DEBUG=y/# SUPPORT_LD_DEBUG is not set/
yann@1
   272
s/^SUPPORT_LD_DEBUG_EARLY=y/# SUPPORT_LD_DEBUG_EARLY is not set/
yann@108
   273
s/^UCLIBC_MALLOC_DEBUGGING=y/# UCLIBC_MALLOC_DEBUGGING is not set/
yann@1
   274
ENDSED
yann@1
   275
        ;;
yann@1
   276
      2)
yann@1
   277
        cat >>"${munge_file}" <<-ENDSED
yann@1
   278
s/^# PTHREADS_DEBUG_SUPPORT is not set.*/PTHREADS_DEBUG_SUPPORT=y/
yann@1
   279
s/^# DODEBUG is not set.*/DODEBUG=y/
yann@1
   280
s/^# DODEBUG_PT is not set.*/DODEBUG_PT=y/
yann@1
   281
s/^# DOASSERTS is not set.*/DOASSERTS=y/
yann@1
   282
s/^# SUPPORT_LD_DEBUG is not set.*/SUPPORT_LD_DEBUG=y/
yann@1
   283
s/^# SUPPORT_LD_DEBUG_EARLY is not set.*/SUPPORT_LD_DEBUG_EARLY=y/
yann@108
   284
s/^# UCLIBC_MALLOC_DEBUGGING is not set/UCLIBC_MALLOC_DEBUGGING=y/
yann@1
   285
ENDSED
yann@1
   286
        ;;
yann@1
   287
    esac
yann@1
   288
    sed -r -i -f "${munge_file}" "${config_file}"
yann@1
   289
    rm -f "${munge_file}"
yann@1
   290
}