scripts/build/libc/uClibc.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Wed Feb 11 10:40:26 2009 +0000 (2009-02-11)
changeset 1209 1fc98c1419a7
parent 1206 3f1078387d8b
child 1247 9759fe659b4f
permissions -rw-r--r--
On some hosts (eg. Cygwin), it's not possible to build the uClibc hostutils. Offer an option to enable/disable the uClibc hostutils build.

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