scripts/build/libc_uClibc.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Jul 14 15:48:51 2008 +0000 (2008-07-14)
changeset 661 74e8be702b1d
parent 642 887ce0523903
permissions -rw-r--r--
Use CT_DoExecLog when building uClibc.

/trunk/scripts/build/libc_uClibc.sh | 19 11 8 0 +++++++++++--------
1 file changed, 11 insertions(+), 8 deletions(-)
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@164
     7
    echo "uClibc-${CT_LIBC_VERSION}"
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@486
    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@1
    41
    if egrep '^KERNEL_SOURCE=' "${CT_LIBC_UCLIBC_CONFIG_FILE}" >/dev/null 2>&1; then
yann@1
    42
        CT_DoLog WARN "Your uClibc version refers to the kernel _sources_, which is bad."
yann@1
    43
        CT_DoLog WARN "I can't guarantee that our little hack will work. Please try to upgrade."
yann@1
    44
    fi
yann@1
    45
yann@1
    46
    CT_DoLog EXTRA "Munging uClibc configuration"
yann@297
    47
    mungeuClibcConfig "${CT_LIBC_UCLIBC_CONFIG_FILE}" "${CT_BUILD_DIR}/uClibc.config"
yann@1
    48
yann@1
    49
    CT_EndStep
yann@1
    50
}
yann@1
    51
yann@1
    52
# This functions installs uClibc's headers
yann@1
    53
do_libc_headers() {
yann@1
    54
    # Only need to install bootstrap uClibc headers for gcc-3.0 and above?  Or maybe just gcc-3.3 and above?
yann@1
    55
    # See also http://gcc.gnu.org/PR8180, which complains about the need for this step.
yann@331
    56
    grep -q 'gcc-[34]' "${CT_SRC_DIR}/${CT_CC_FILE}/ChangeLog" 2>/dev/null || return 0
yann@1
    57
yann@1
    58
    CT_DoStep INFO "Installing C library headers"
yann@1
    59
yann@1
    60
    mkdir -p "${CT_BUILD_DIR}/build-libc-headers"
yann@1
    61
    cd "${CT_BUILD_DIR}/build-libc-headers"
yann@1
    62
yann@1
    63
    # Simply copy files until uClibc has the ablity to build out-of-tree
yann@1
    64
    CT_DoLog EXTRA "Copying sources to build dir"
yann@1
    65
    { cd "${CT_SRC_DIR}/${CT_LIBC_FILE}"; tar cf - .; } |tar xf -
yann@1
    66
yann@1
    67
    # Retrieve the config file
yann@297
    68
    cp "${CT_BUILD_DIR}/uClibc.config" .config
yann@1
    69
yann@1
    70
    # uClibc uses the CROSS environment variable as a prefix to the
yann@1
    71
    # compiler tools to use.  Setting it to the empty string forces
yann@1
    72
    # use of the native build host tools, which we need at this
yann@1
    73
    # stage, as we don't have target tools yet.
yann@1
    74
    CT_DoLog EXTRA "Applying configuration"
yann@661
    75
    CT_DoYes "" |CT_DoExecLog ALL make CROSS= PREFIX="${CT_SYSROOT_DIR}/" oldconfig
yann@1
    76
yann@1
    77
    CT_DoLog EXTRA "Building headers"
yann@661
    78
    CT_DoExecLog ALL make ${CT_LIBC_UCLIBC_VERBOSITY} CROSS= PREFIX="${CT_SYSROOT_DIR}/" headers
yann@1
    79
yann@1
    80
    CT_DoLog EXTRA "Installing headers"
yann@661
    81
    CT_DoExecLog ALL make ${CT_LIBC_UCLIBC_VERBOSITY} CROSS= PREFIX="${CT_SYSROOT_DIR}/" install_dev
yann@1
    82
yann@1
    83
    CT_EndStep
yann@1
    84
}
yann@1
    85
yann@136
    86
# Build and install start files
yann@136
    87
do_libc_start_files() {
yann@136
    88
    :
yann@136
    89
}
yann@136
    90
yann@1
    91
# This function build and install the full uClibc
yann@1
    92
do_libc() {
yann@1
    93
    CT_DoStep INFO "Installing C library"
yann@1
    94
yann@1
    95
    mkdir -p "${CT_BUILD_DIR}/build-libc"
yann@1
    96
    cd "${CT_BUILD_DIR}/build-libc"
yann@1
    97
yann@1
    98
    # Simply copy files until uClibc has the ablity to build out-of-tree
yann@1
    99
    CT_DoLog EXTRA "Copying sources to build dir"
yann@1
   100
    { cd "${CT_SRC_DIR}/${CT_LIBC_FILE}"; tar cf - .; } |tar xf -
yann@1
   101
yann@1
   102
    # Retrieve the config file
yann@297
   103
    cp "${CT_BUILD_DIR}/uClibc.config" .config
yann@1
   104
yann@1
   105
    # uClibc uses the CROSS environment variable as a prefix to the compiler
yann@1
   106
    # tools to use.  The newly built tools should be in our path, so we need
yann@1
   107
    # only give the correct name for them.
yann@1
   108
    # Note about CFLAGS: In uClibc, CFLAGS are generated by Rules.mak,
yann@1
   109
    # depending  on the configuration of the library. That is, they are tailored
yann@1
   110
    # to best fit the target. So it is useless and seems to be a bad thing to
yann@1
   111
    # use LIBC_EXTRA_CFLAGS here.
yann@1
   112
    CT_DoLog EXTRA "Applying configuration"
yann@661
   113
    CT_DoYes "" |CT_DoExecLog ALL               \
yann@661
   114
                 make CROSS=${CT_TARGET}-       \
yann@661
   115
                 PREFIX="${CT_SYSROOT_DIR}/"    \
yann@661
   116
                 oldconfig
yann@1
   117
yann@1
   118
    # We do _not_ want to strip anything for now, in case we specifically
yann@1
   119
    # asked for a debug toolchain, thus the STRIPTOOL= assignment
yann@1
   120
    CT_DoLog EXTRA "Building C library"
yann@661
   121
    CT_DoExecLog ALL                    \
yann@211
   122
    make CROSS=${CT_TARGET}-            \
yann@1
   123
         PREFIX="${CT_SYSROOT_DIR}/"    \
yann@1
   124
         STRIPTOOL=true                 \
yann@500
   125
         ${CT_LIBC_UCLIBC_VERBOSITY}    \
yann@661
   126
         all
yann@1
   127
yann@1
   128
    # YEM-FIXME: we want to install libraries in $SYSROOT/lib, but we don't want
yann@1
   129
    # to install headers in $SYSROOT/include, thus making only install_runtime.
yann@1
   130
    # Plus, the headers were previously installed earlier with install_dev, so
yann@1
   131
    # all should be well. Unfortunately, the install_dev target does not install
yann@1
   132
    # crti.o and consorts... :-( So reverting to target 'install'.
yann@1
   133
    # Note: PARALLELMFLAGS is not usefull for installation.
yann@1
   134
    # We do _not_ want to strip anything for now, in case we specifically
yann@1
   135
    # asked for a debug toolchain, thus the STRIPTOOL= assignment
yann@1
   136
    CT_DoLog EXTRA "Installing C library"
yann@661
   137
    CT_DoExecLog ALL                    \
yann@1
   138
    make CROSS=${CT_TARGET}-            \
yann@1
   139
         PREFIX="${CT_SYSROOT_DIR}/"    \
yann@1
   140
         STRIPTOOL=true                 \
yann@500
   141
         ${CT_LIBC_UCLIBC_VERBOSITY}    \
yann@661
   142
         install
yann@1
   143
yann@1
   144
    CT_EndStep
yann@1
   145
}
yann@1
   146
yann@1
   147
# This function is used to install those components needing the final C compiler
yann@1
   148
do_libc_finish() {
yann@78
   149
    :
yann@1
   150
}
yann@1
   151
yann@1
   152
# Initialises the .config file to sensible values
yann@297
   153
# $1: original file
yann@297
   154
# $2: munged file
yann@1
   155
mungeuClibcConfig() {
yann@297
   156
    src_config_file="$1"
yann@297
   157
    dst_config_file="$2"
yann@1
   158
    munge_file="${CT_BUILD_DIR}/munge-uClibc-config.sed"
yann@1
   159
yann@642
   160
    # Start with a fresh file
yann@642
   161
    rm -f "${munge_file}"
yann@642
   162
    touch "${munge_file}"
yann@297
   163
yann@108
   164
    # Hack our target in the config file.
yann@108
   165
    # Also remove stripping: its the responsibility of the
yann@108
   166
    # firmware builder to strip or not.
yann@297
   167
    cat >>"${munge_file}" <<-ENDSED
yann@1
   168
s/^(TARGET_.*)=y$/# \\1 is not set/
yann@1
   169
s/^# TARGET_${CT_KERNEL_ARCH} is not set/TARGET_${CT_KERNEL_ARCH}=y/
yann@1
   170
s/^TARGET_ARCH=".*"/TARGET_ARCH="${CT_KERNEL_ARCH}"/
yann@108
   171
s/.*(DOSTRIP).*/# \\1 is not set/
yann@1
   172
ENDSED
yann@1
   173
yann@397
   174
    # Ah. We may one day need architecture-specific handler here...
yann@397
   175
    # Hack the ARM {E,O}ABI into the config file
yann@397
   176
    if [ "${CT_ARCH_ARM_EABI}" = "y" ]; then
yann@397
   177
        cat >>"${munge_file}" <<-ENDSED
yann@397
   178
s/.*(CONFIG_ARM_OABI).*/# \\1 is not set/
yann@397
   179
s/.*(CONFIG_ARM_EABI).*/\\1=y/
yann@397
   180
ENDSED
yann@397
   181
    else
yann@397
   182
        cat >>"${munge_file}" <<-ENDSED
yann@397
   183
s/.*(CONFIG_ARM_OABI).*/\\1=y/
yann@397
   184
s/.*(CONFIG_ARM_EABI).*/# \\1 is not set/
yann@397
   185
ENDSED
yann@397
   186
    fi
yann@397
   187
yann@108
   188
    # Accomodate for old and new uClibc versions, where the
yann@108
   189
    # way to select between big/little endian has changed
yann@1
   190
    case "${CT_ARCH_BE},${CT_ARCH_LE}" in
yann@297
   191
        y,) cat >>"${munge_file}" <<-ENDSED
yann@108
   192
s/.*(ARCH_LITTLE_ENDIAN).*/# \\1 is not set/
yann@1
   193
s/.*(ARCH_BIG_ENDIAN).*/\\1=y/
yann@108
   194
s/.*(ARCH_WANTS_LITTLE_ENDIAN).*/# \\1 is not set/
yann@108
   195
s/.*(ARCH_WANTS_BIG_ENDIAN).*/\\1=y/
yann@1
   196
ENDSED
yann@1
   197
        ;;
yann@297
   198
        ,y) cat >>"${munge_file}" <<-ENDSED
yann@108
   199
s/.*(ARCH_LITTLE_ENDIAN).*/\\1=y/
yann@1
   200
s/.*(ARCH_BIG_ENDIAN).*/# \\1 is not set/
yann@108
   201
s/.*(ARCH_WANTS_LITTLE_ENDIAN).*/\\1=y/
yann@108
   202
s/.*(ARCH_WANTS_BIG_ENDIAN).*/# \\1 is not set/
yann@1
   203
ENDSED
yann@1
   204
        ;;
yann@1
   205
    esac
yann@1
   206
yann@108
   207
    # Accomodate for old and new uClibc version, where the
yann@108
   208
    # way to select between hard/soft float has changed
yann@1
   209
    case "${CT_ARCH_FLOAT_HW},${CT_ARCH_FLOAT_SW}" in
yann@297
   210
        y,) cat >>"${munge_file}" <<-ENDSED
yann@497
   211
s/^[^_]*(HAS_FPU).*/\\1=y/
yann@108
   212
s/.*(UCLIBC_HAS_FPU).*/\\1=y/
yann@1
   213
ENDSED
yann@1
   214
            ;;
yann@297
   215
        ,y) cat >>"${munge_file}" <<-ENDSED
yann@497
   216
s/^[^_]*(HAS_FPU).*/\\# \\1 is not set/
yann@108
   217
s/.*(UCLIBC_HAS_FPU).*/# \\1 is not set/
yann@1
   218
ENDSED
yann@1
   219
            ;;
yann@1
   220
    esac
yann@1
   221
yann@397
   222
    # Change paths to work with crosstool-NG
yann@1
   223
    # From http://www.uclibc.org/cgi-bin/viewcvs.cgi?rev=16846&view=rev
yann@1
   224
    #  " we just want the kernel headers, not the whole kernel source ...
yann@1
   225
    #  " so people may need to update their paths slightly
yann@523
   226
    quoted_kernel_source=$(echo "${CT_HEADERS_DIR}" | sed -r -e 's,/include/?$,,; s,/,\\/,g;')
yann@523
   227
    quoted_headers_dir=$(echo "${CT_HEADERS_DIR}" | sed -r -e 's,/,\\/,g;')
yann@1
   228
    # CROSS_COMPILER_PREFIX is left as is, as the CROSS parameter is forced on the command line
yann@1
   229
    # DEVEL_PREFIX is left as '/usr/' because it is post-pended to $PREFIX, wich is the correct value of ${PREFIX}/${TARGET}
yann@1
   230
    # Some (old) versions of uClibc use KERNEL_SOURCE (which is _wrong_), and
yann@1
   231
    # newer versions use KERNEL_HEADERS (which is right). See:
yann@297
   232
    cat >>"${munge_file}" <<-ENDSED
yann@1
   233
s/^DEVEL_PREFIX=".*"/DEVEL_PREFIX="\\/usr\\/"/
yann@1
   234
s/^RUNTIME_PREFIX=".*"/RUNTIME_PREFIX="\\/"/
yann@1
   235
s/^SHARED_LIB_LOADER_PREFIX=.*/SHARED_LIB_LOADER_PREFIX="\\/lib\\/"/
yann@1
   236
s/^KERNEL_SOURCE=".*"/KERNEL_SOURCE="${quoted_kernel_source}"/
yann@1
   237
s/^KERNEL_HEADERS=".*"/KERNEL_HEADERS="${quoted_headers_dir}"/
yann@1
   238
s/^UCLIBC_DOWNLOAD_PREGENERATED_LOCALE=y/\\# UCLIBC_DOWNLOAD_PREGENERATED_LOCALE is not set/
yann@1
   239
ENDSED
yann@1
   240
yann@1
   241
    if [ "${CT_USE_PIPES}" = "y" ]; then
yann@108
   242
        if grep UCLIBC_EXTRA_CFLAGS extra/Configs/Config.in >/dev/null 2>&1; then
yann@108
   243
            # Good, there is special provision for such things as -pipe!
yann@297
   244
            cat >>"${munge_file}" <<-ENDSED
yann@108
   245
s/^(UCLIBC_EXTRA_CFLAGS=".*)"$/\\1 -pipe"/
yann@108
   246
ENDSED
yann@108
   247
        else
yann@108
   248
            # Hack our -pipe into WARNINGS, which will be internally incorporated to
yann@108
   249
            # CFLAGS. This a dirty hack, but yet needed
yann@108
   250
            cat >> "${munge_file}" <<-ENDSED
yann@1
   251
s/^(WARNINGS=".*)"$/\\1 -pipe"/
yann@1
   252
ENDSED
yann@108
   253
        fi
yann@1
   254
    fi
yann@1
   255
yann@1
   256
    # Force on options needed for C++ if we'll be making a C++ compiler.
yann@1
   257
    # Note that the two PREGEN_LOCALE and the XLOCALE lines may be missing
yann@1
   258
    # entirely if LOCALE is not set.  If LOCALE was already set, we'll
yann@1
   259
    # assume the user has already made all the appropriate generation
yann@1
   260
    # arrangements.  Note that having the uClibc Makefile download the
yann@1
   261
    # pregenerated locales is not compatible with crosstool; besides,
yann@1
   262
    # crosstool downloads them as part of getandpatch.sh.
yann@1
   263
    if [ "${CT_CC_LANG_CXX}" = "y" ]; then
yann@297
   264
        cat >>"${munge_file}" <<-ENDSED
yann@1
   265
s/^# DO_C99_MATH is not set/DO_C99_MATH=y/
yann@1
   266
s/^# UCLIBC_CTOR_DTOR is not set/UCLIBC_CTOR_DTOR=y/
yann@1
   267
# Add these three lines when doing C++?
yann@580
   268
s/^# UCLIBC_HAS_WCHAR is not set/UCLIBC_HAS_WCHAR=y/
yann@1
   269
#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@580
   270
s/^# UCLIBC_HAS_GNU_GETOPT is not set/UCLIBC_HAS_GNU_GETOPT=y/
yann@1
   271
ENDSED
yann@1
   272
    fi
yann@1
   273
yann@578
   274
    # Always build the libpthread_db
yann@578
   275
    cat >>"${munge_file}" <<-ENDSED
yann@578
   276
s/^# PTHREADS_DEBUG_SUPPORT is not set.*/PTHREADS_DEBUG_SUPPORT=y/
yann@578
   277
ENDSED
yann@578
   278
yann@1
   279
    # Force on debug options if asked for
yann@1
   280
    case "${CT_LIBC_UCLIBC_DEBUG_LEVEL}" in
yann@1
   281
      0)
yann@1
   282
        cat >>"${munge_file}" <<-ENDSED
yann@1
   283
s/^DODEBUG=y/# DODEBUG is not set/
yann@1
   284
s/^DODEBUG_PT=y/# DODEBUG_PT is not set/
yann@1
   285
s/^DOASSERTS=y/# DOASSERTS is not set/
yann@1
   286
s/^SUPPORT_LD_DEBUG=y/# SUPPORT_LD_DEBUG is not set/
yann@1
   287
s/^SUPPORT_LD_DEBUG_EARLY=y/# SUPPORT_LD_DEBUG_EARLY is not set/
yann@108
   288
s/^UCLIBC_MALLOC_DEBUGGING=y/# UCLIBC_MALLOC_DEBUGGING is not set/
yann@1
   289
ENDSED
yann@1
   290
        ;;
yann@1
   291
      1)
yann@1
   292
        cat >>"${munge_file}" <<-ENDSED
yann@1
   293
s/^# DODEBUG is not set.*/DODEBUG=y/
yann@1
   294
s/^DODEBUG_PT=y/# DODEBUG_PT is not set/
yann@1
   295
s/^DOASSERTS=y/# DOASSERTS is not set/
yann@1
   296
s/^SUPPORT_LD_DEBUG=y/# SUPPORT_LD_DEBUG is not set/
yann@1
   297
s/^SUPPORT_LD_DEBUG_EARLY=y/# SUPPORT_LD_DEBUG_EARLY is not set/
yann@108
   298
s/^UCLIBC_MALLOC_DEBUGGING=y/# UCLIBC_MALLOC_DEBUGGING is not set/
yann@1
   299
ENDSED
yann@1
   300
        ;;
yann@1
   301
      2)
yann@1
   302
        cat >>"${munge_file}" <<-ENDSED
yann@1
   303
s/^# DODEBUG is not set.*/DODEBUG=y/
yann@1
   304
s/^# DODEBUG_PT is not set.*/DODEBUG_PT=y/
yann@1
   305
s/^# DOASSERTS is not set.*/DOASSERTS=y/
yann@1
   306
s/^# SUPPORT_LD_DEBUG is not set.*/SUPPORT_LD_DEBUG=y/
yann@1
   307
s/^# SUPPORT_LD_DEBUG_EARLY is not set.*/SUPPORT_LD_DEBUG_EARLY=y/
yann@108
   308
s/^# UCLIBC_MALLOC_DEBUGGING is not set/UCLIBC_MALLOC_DEBUGGING=y/
yann@1
   309
ENDSED
yann@1
   310
        ;;
yann@1
   311
    esac
yann@297
   312
    sed -r -f "${munge_file}" "${src_config_file}" >"${dst_config_file}"
yann@1
   313
}