2007-02-24 11:00:05 +00:00
# This file declares functions to install the uClibc C library
# Copyright 2007 Yann E. MORIN
# Licensed under the GPL v2. See COPYING in the root of this package
2007-05-07 09:04:02 +00:00
# Download uClibc
do_libc_get( ) {
2008-05-03 17:51:16 +00:00
libc_src = " http://www.uclibc.org/downloads
2007-05-07 09:04:02 +00:00
http://www.uclibc.org/downloads/snapshots
http://www.uclibc.org/downloads/old-releases"
# For uClibc, we have almost every thing: releases, and snapshots
# for the last month or so. We'll have to deal with svn revisions
# later...
2009-01-04 22:17:53 +00:00
CT_GetFile " uClibc- ${ CT_LIBC_VERSION } " ${ libc_src }
2007-05-07 09:04:02 +00:00
# uClibc locales
2009-01-05 23:02:43 +00:00
if [ " ${ CT_LIBC_UCLIBC_LOCALES } " = "y" ] ; then
CT_GetFile "uClibc-locale-030818" ${ libc_src }
fi
2007-05-07 15:57:02 +00:00
return 0
2007-05-07 09:04:02 +00:00
}
# Extract uClibc
do_libc_extract( ) {
2009-01-05 23:02:43 +00:00
CT_Extract " uClibc- ${ CT_LIBC_VERSION } "
CT_Patch " uClibc- ${ CT_LIBC_VERSION } "
2007-05-07 09:04:02 +00:00
# uClibc locales
2009-01-04 22:17:53 +00:00
if [ " ${ CT_LIBC_UCLIBC_LOCALES } " = "y" ] ; then
2009-01-05 23:02:43 +00:00
CT_Pushd " ${ CT_SRC_DIR } /uClibc- ${ CT_LIBC_VERSION } /extra/locale "
CT_Extract "uClibc-locale-030818" nochdir
CT_Patch "uClibc-locale-030818" nochdir
2009-01-04 22:17:53 +00:00
CT_Popd
fi
2007-05-07 15:57:02 +00:00
return 0
2007-05-07 09:04:02 +00:00
}
2007-02-24 11:00:05 +00:00
# Check that uClibc has been previously configured
do_libc_check_config( ) {
CT_DoStep INFO "Checking C library configuration"
CT_TestOrAbort "You did not provide a uClibc config file!" -n " ${ CT_LIBC_UCLIBC_CONFIG_FILE } " -a -f " ${ CT_LIBC_UCLIBC_CONFIG_FILE } "
2009-03-08 17:09:39 +00:00
if grep -E '^KERNEL_SOURCE=' " ${ CT_LIBC_UCLIBC_CONFIG_FILE } " >/dev/null 2>& 1; then
2007-02-24 11:00:05 +00:00
CT_DoLog WARN "Your uClibc version refers to the kernel _sources_, which is bad."
CT_DoLog WARN "I can't guarantee that our little hack will work. Please try to upgrade."
fi
CT_DoLog EXTRA "Munging uClibc configuration"
2009-03-27 23:40:07 +00:00
mungeuClibcConfig " ${ CT_LIBC_UCLIBC_CONFIG_FILE } " " ${ CT_CONFIG_DIR } /uClibc.config "
2007-02-24 11:00:05 +00:00
CT_EndStep
}
# This functions installs uClibc's headers
do_libc_headers( ) {
2009-05-07 18:56:31 +00:00
local install_rule
2007-02-24 11:00:05 +00:00
CT_DoStep INFO "Installing C library headers"
mkdir -p " ${ CT_BUILD_DIR } /build-libc-headers "
cd " ${ CT_BUILD_DIR } /build-libc-headers "
# Simply copy files until uClibc has the ablity to build out-of-tree
CT_DoLog EXTRA "Copying sources to build dir"
2009-05-07 18:56:31 +00:00
tar cf - -C " ${ CT_SRC_DIR } /uClibc- ${ CT_LIBC_VERSION } " . | tar xf -
2007-02-24 11:00:05 +00:00
# Retrieve the config file
2009-03-27 23:40:07 +00:00
cp " ${ CT_CONFIG_DIR } /uClibc.config " .config
2007-02-24 11:00:05 +00:00
# uClibc uses the CROSS environment variable as a prefix to the
# compiler tools to use. Setting it to the empty string forces
# use of the native build host tools, which we need at this
# stage, as we don't have target tools yet.
CT_DoLog EXTRA "Applying configuration"
2008-07-14 15:48:51 +00:00
CT_DoYes "" | CT_DoExecLog ALL make CROSS = PREFIX = " ${ CT_SYSROOT_DIR } / " oldconfig
2007-02-24 11:00:05 +00:00
CT_DoLog EXTRA "Building headers"
2008-07-14 15:48:51 +00:00
CT_DoExecLog ALL make ${ CT_LIBC_UCLIBC_VERBOSITY } CROSS = PREFIX = " ${ CT_SYSROOT_DIR } / " headers
2007-02-24 11:00:05 +00:00
2009-05-07 18:56:31 +00:00
if [ " ${ CT_LIBC_UCLIBC_0_9_30_or_later } " = "y" ] ; then
install_rule = install_headers
else
install_rule = install_dev
fi
2007-02-24 11:00:05 +00:00
CT_DoLog EXTRA "Installing headers"
2009-05-11 20:19:50 +00:00
CT_DoExecLog ALL make ${ CT_LIBC_UCLIBC_VERBOSITY } CROSS = PREFIX = " ${ CT_SYSROOT_DIR } / " " ${ install_rule } "
2007-02-24 11:00:05 +00:00
CT_EndStep
}
2007-05-27 20:22:06 +00:00
# Build and install start files
do_libc_start_files( ) {
:
}
2007-02-24 11:00:05 +00:00
# This function build and install the full uClibc
do_libc( ) {
CT_DoStep INFO "Installing C library"
mkdir -p " ${ CT_BUILD_DIR } /build-libc "
cd " ${ CT_BUILD_DIR } /build-libc "
# Simply copy files until uClibc has the ablity to build out-of-tree
CT_DoLog EXTRA "Copying sources to build dir"
2009-05-07 18:56:31 +00:00
tar cf - -C " ${ CT_SRC_DIR } /uClibc- ${ CT_LIBC_VERSION } " . | tar xf -
2007-02-24 11:00:05 +00:00
# Retrieve the config file
2009-03-27 23:40:07 +00:00
cp " ${ CT_CONFIG_DIR } /uClibc.config " .config
2007-02-24 11:00:05 +00:00
# uClibc uses the CROSS environment variable as a prefix to the compiler
# tools to use. The newly built tools should be in our path, so we need
# only give the correct name for them.
# Note about CFLAGS: In uClibc, CFLAGS are generated by Rules.mak,
# depending on the configuration of the library. That is, they are tailored
# to best fit the target. So it is useless and seems to be a bad thing to
# use LIBC_EXTRA_CFLAGS here.
CT_DoLog EXTRA "Applying configuration"
2008-07-14 15:48:51 +00:00
CT_DoYes "" | CT_DoExecLog ALL \
make CROSS = ${ CT_TARGET } - \
PREFIX = " ${ CT_SYSROOT_DIR } / " \
oldconfig
2007-02-24 11:00:05 +00:00
# We do _not_ want to strip anything for now, in case we specifically
# asked for a debug toolchain, thus the STRIPTOOL= assignment
2008-11-01 17:16:34 +00:00
# /Old/ versions can not build in //
2007-02-24 11:00:05 +00:00
CT_DoLog EXTRA "Building C library"
2008-11-01 17:16:34 +00:00
CT_DoExecLog ALL \
make ${ CT_LIBC_UCLIBC_PARALLEL : + ${ PARALLELMFLAGS } } \
CROSS = ${ CT_TARGET } - \
PREFIX = " ${ CT_SYSROOT_DIR } / " \
STRIPTOOL = true \
${ CT_LIBC_UCLIBC_VERBOSITY } \
2008-07-14 15:48:51 +00:00
all
2007-02-24 11:00:05 +00:00
2009-05-07 18:56:31 +00:00
# YEM-FIXME:
# - we want to install 'runtime' files, eg. lib*.{a,so*}, crti.o and
# such files, except the headers as they already are installed
# - "make install_dev" installs the headers, the crti.o... and the
# static libs, but not the dynamic libs
# - "make install_runtime" installs the dynamic libs only
# - "make install" calls install_runtime and install_dev
# - so we're left with re-installing the headers... Sigh...
#
2007-02-24 11:00:05 +00:00
# We do _not_ want to strip anything for now, in case we specifically
2008-11-01 17:02:48 +00:00
# asked for a debug toolchain, hence the STRIPTOOL= assignment
2009-05-07 18:56:31 +00:00
#
# Note: PARALLELMFLAGS is not usefull for installation.
#
2007-02-24 11:00:05 +00:00
CT_DoLog EXTRA "Installing C library"
2008-07-14 15:48:51 +00:00
CT_DoExecLog ALL \
2007-02-24 11:00:05 +00:00
make CROSS = ${ CT_TARGET } - \
PREFIX = " ${ CT_SYSROOT_DIR } / " \
STRIPTOOL = true \
2008-05-14 17:52:53 +00:00
${ CT_LIBC_UCLIBC_VERBOSITY } \
2008-07-14 15:48:51 +00:00
install
2007-02-24 11:00:05 +00:00
2009-02-11 10:40:26 +00:00
if [ " ${ CT_LIBC_UCLIBC_BUILD_CROSS_LDD } " = "y" ] ; then
CT_DoLog EXTRA "Building C library cross-ldd"
CT_DoExecLog ALL \
make PREFIX = " ${ CT_SYSROOT_DIR } / " \
${ CT_LIBC_UCLIBC_VERBOSITY } \
-C utils hostutils
CT_DoLog EXTRA "Installing C library cross-ldd"
CT_DoExecLog ALL install -m 0755 utils/ldd.host " ${ CT_PREFIX_DIR } /bin/ ${ CT_TARGET } -ldd "
fi
2007-02-24 11:00:05 +00:00
CT_EndStep
}
# This function is used to install those components needing the final C compiler
do_libc_finish( ) {
2009-02-11 10:40:26 +00:00
:
2007-02-24 11:00:05 +00:00
}
# Initialises the .config file to sensible values
2007-07-28 11:59:37 +00:00
# $1: original file
# $2: munged file
2007-02-24 11:00:05 +00:00
mungeuClibcConfig( ) {
2007-07-28 11:59:37 +00:00
src_config_file = " $1 "
dst_config_file = " $2 "
2007-02-24 11:00:05 +00:00
munge_file = " ${ CT_BUILD_DIR } /munge-uClibc-config.sed "
2008-07-07 21:25:57 +00:00
# Start with a fresh file
rm -f " ${ munge_file } "
touch " ${ munge_file } "
2007-07-28 11:59:37 +00:00
2007-05-19 22:52:47 +00:00
# Hack our target in the config file.
# Also remove stripping: its the responsibility of the
# firmware builder to strip or not.
2007-07-28 11:59:37 +00:00
cat >>" ${ munge_file } " <<-ENDSE D
2007-02-24 11:00:05 +00:00
s/^( TARGET_.*) = y$/# \\ 1 is not set/
s/^# TARGET_${ CT_KERNEL_ARCH } is not set/TARGET_${ CT_KERNEL_ARCH } = y/
s/^TARGET_ARCH= ".*" /TARGET_ARCH= " ${ CT_KERNEL_ARCH } " /
2007-05-19 22:52:47 +00:00
s/.*( DOSTRIP) .*/# \\ 1 is not set/
2007-02-24 11:00:05 +00:00
ENDSED
2007-09-16 17:59:18 +00:00
# Ah. We may one day need architecture-specific handler here...
# Hack the ARM {E,O}ABI into the config file
if [ " ${ CT_ARCH_ARM_EABI } " = "y" ] ; then
cat >>" ${ munge_file } " <<-ENDSE D
s/.*( CONFIG_ARM_OABI) .*/# \\ 1 is not set/
s/.*( CONFIG_ARM_EABI) .*/\\ 1 = y/
ENDSED
else
cat >>" ${ munge_file } " <<-ENDSE D
s/.*( CONFIG_ARM_OABI) .*/\\ 1 = y/
s/.*( CONFIG_ARM_EABI) .*/# \\ 1 is not set/
ENDSED
fi
2007-05-19 22:52:47 +00:00
# Accomodate for old and new uClibc versions, where the
# way to select between big/little endian has changed
2007-02-24 11:00:05 +00:00
case " ${ CT_ARCH_BE } , ${ CT_ARCH_LE } " in
2007-07-28 11:59:37 +00:00
y,) cat >>" ${ munge_file } " <<-ENDSE D
2007-02-24 11:00:05 +00:00
s/.*( ARCH_LITTLE_ENDIAN) .*/# \\ 1 is not set/
2007-05-19 22:52:47 +00:00
s/.*( ARCH_BIG_ENDIAN) .*/\\ 1 = y/
s/.*( ARCH_WANTS_LITTLE_ENDIAN) .*/# \\ 1 is not set/
s/.*( ARCH_WANTS_BIG_ENDIAN) .*/\\ 1 = y/
2007-02-24 11:00:05 +00:00
ENDSED
; ;
2007-07-28 11:59:37 +00:00
,y) cat >>" ${ munge_file } " <<-ENDSE D
2007-02-24 11:00:05 +00:00
s/.*( ARCH_LITTLE_ENDIAN) .*/\\ 1 = y/
2007-05-19 22:52:47 +00:00
s/.*( ARCH_BIG_ENDIAN) .*/# \\ 1 is not set/
s/.*( ARCH_WANTS_LITTLE_ENDIAN) .*/\\ 1 = y/
s/.*( ARCH_WANTS_BIG_ENDIAN) .*/# \\ 1 is not set/
2007-02-24 11:00:05 +00:00
ENDSED
; ;
esac
2007-05-19 22:52:47 +00:00
# Accomodate for old and new uClibc version, where the
# way to select between hard/soft float has changed
2007-02-24 11:00:05 +00:00
case " ${ CT_ARCH_FLOAT_HW } , ${ CT_ARCH_FLOAT_SW } " in
2007-07-28 11:59:37 +00:00
y,) cat >>" ${ munge_file } " <<-ENDSE D
2008-05-14 17:39:18 +00:00
s/^[ ^_] *( HAS_FPU) .*/\\ 1 = y/
2007-05-19 22:52:47 +00:00
s/.*( UCLIBC_HAS_FPU) .*/\\ 1 = y/
2007-02-24 11:00:05 +00:00
ENDSED
; ;
2007-07-28 11:59:37 +00:00
,y) cat >>" ${ munge_file } " <<-ENDSE D
2008-05-14 17:39:18 +00:00
s/^[ ^_] *( HAS_FPU) .*/\\ # \\1 is not set/
2007-05-19 22:52:47 +00:00
s/.*( UCLIBC_HAS_FPU) .*/# \\ 1 is not set/
2007-02-24 11:00:05 +00:00
ENDSED
; ;
esac
2007-09-16 17:59:18 +00:00
# Change paths to work with crosstool-NG
2007-02-24 11:00:05 +00:00
# From http://www.uclibc.org/cgi-bin/viewcvs.cgi?rev=16846&view=rev
# " we just want the kernel headers, not the whole kernel source ...
# " so people may need to update their paths slightly
2008-05-20 21:32:39 +00:00
quoted_kernel_source = $( echo " ${ CT_HEADERS_DIR } " | sed -r -e 's,/include/?$,,; s,/,\\/,g;' )
quoted_headers_dir = $( echo " ${ CT_HEADERS_DIR } " | sed -r -e 's,/,\\/,g;' )
2007-02-24 11:00:05 +00:00
# CROSS_COMPILER_PREFIX is left as is, as the CROSS parameter is forced on the command line
# DEVEL_PREFIX is left as '/usr/' because it is post-pended to $PREFIX, wich is the correct value of ${PREFIX}/${TARGET}
# Some (old) versions of uClibc use KERNEL_SOURCE (which is _wrong_), and
# newer versions use KERNEL_HEADERS (which is right). See:
2007-07-28 11:59:37 +00:00
cat >>" ${ munge_file } " <<-ENDSE D
2007-02-24 11:00:05 +00:00
s/^DEVEL_PREFIX= ".*" /DEVEL_PREFIX= "\\/usr\\/" /
s/^RUNTIME_PREFIX= ".*" /RUNTIME_PREFIX= "\\/" /
s/^SHARED_LIB_LOADER_PREFIX= .*/SHARED_LIB_LOADER_PREFIX= "\\/lib\\/" /
s/^KERNEL_SOURCE= ".*" /KERNEL_SOURCE= " ${ quoted_kernel_source } " /
s/^KERNEL_HEADERS= ".*" /KERNEL_HEADERS= " ${ quoted_headers_dir } " /
s/^UCLIBC_DOWNLOAD_PREGENERATED_LOCALE= y/\\ # UCLIBC_DOWNLOAD_PREGENERATED_LOCALE is not set/
ENDSED
if [ " ${ CT_USE_PIPES } " = "y" ] ; then
2007-05-19 22:52:47 +00:00
if grep UCLIBC_EXTRA_CFLAGS extra/Configs/Config.in >/dev/null 2>& 1; then
# Good, there is special provision for such things as -pipe!
2007-07-28 11:59:37 +00:00
cat >>" ${ munge_file } " <<-ENDSE D
2007-05-19 22:52:47 +00:00
s/^( UCLIBC_EXTRA_CFLAGS = ".*)" $/\\ 1 -pipe" /
ENDSED
else
# Hack our -pipe into WARNINGS, which will be internally incorporated to
# CFLAGS. This a dirty hack, but yet needed
cat >> " ${ munge_file } " <<-ENDSE D
2007-02-24 11:00:05 +00:00
s/^( WARNINGS = ".*)" $/\\ 1 -pipe" /
ENDSED
2007-05-19 22:52:47 +00:00
fi
2007-02-24 11:00:05 +00:00
fi
2008-11-01 17:13:54 +00:00
# Locales support
2007-02-24 11:00:05 +00:00
# Note that the two PREGEN_LOCALE and the XLOCALE lines may be missing
# entirely if LOCALE is not set. If LOCALE was already set, we'll
# assume the user has already made all the appropriate generation
# arrangements. Note that having the uClibc Makefile download the
# pregenerated locales is not compatible with crosstool; besides,
# crosstool downloads them as part of getandpatch.sh.
2008-11-01 17:13:54 +00:00
if [ " ${ CT_LIBC_UCLIBC_LOCALES } " = "y" ] ; then
cat >>" ${ munge_file } " <<-ENDSE D
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
ENDSED
fi
# Force on options needed for C++ if we'll be making a C++ compiler.
# I'm not sure locales are a requirement for doing C++... Are they?
2007-02-24 11:00:05 +00:00
if [ " ${ CT_CC_LANG_CXX } " = "y" ] ; then
2007-07-28 11:59:37 +00:00
cat >>" ${ munge_file } " <<-ENDSE D
2007-02-24 11:00:05 +00:00
s/^# DO_C99_MATH is not set/DO_C99_MATH= y/
s/^# UCLIBC_CTOR_DTOR is not set/UCLIBC_CTOR_DTOR= y/
# Add these three lines when doing C++?
2008-06-19 08:17:39 +00:00
s/^# UCLIBC_HAS_WCHAR is not set/UCLIBC_HAS_WCHAR= y/
2007-02-24 11:00:05 +00:00
#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/
2008-06-19 08:17:39 +00:00
s/^# UCLIBC_HAS_GNU_GETOPT is not set/UCLIBC_HAS_GNU_GETOPT= y/
2007-02-24 11:00:05 +00:00
ENDSED
fi
2008-06-19 08:14:52 +00:00
# Always build the libpthread_db
cat >>" ${ munge_file } " <<-ENDSE D
s/^# PTHREADS_DEBUG_SUPPORT is not set.*/PTHREADS_DEBUG_SUPPORT= y/
ENDSED
2007-02-24 11:00:05 +00:00
# Force on debug options if asked for
case " ${ CT_LIBC_UCLIBC_DEBUG_LEVEL } " in
0)
cat >>" ${ munge_file } " <<-ENDSE D
s/^DODEBUG= y/# DODEBUG is not set/
s/^DODEBUG_PT= y/# DODEBUG_PT is not set/
s/^DOASSERTS= y/# DOASSERTS is not set/
s/^SUPPORT_LD_DEBUG= y/# SUPPORT_LD_DEBUG is not set/
s/^SUPPORT_LD_DEBUG_EARLY= y/# SUPPORT_LD_DEBUG_EARLY is not set/
2007-05-19 22:52:47 +00:00
s/^UCLIBC_MALLOC_DEBUGGING= y/# UCLIBC_MALLOC_DEBUGGING is not set/
2007-02-24 11:00:05 +00:00
ENDSED
; ;
1)
cat >>" ${ munge_file } " <<-ENDSE D
s/^# DODEBUG is not set.*/DODEBUG= y/
s/^DODEBUG_PT= y/# DODEBUG_PT is not set/
s/^DOASSERTS= y/# DOASSERTS is not set/
s/^SUPPORT_LD_DEBUG= y/# SUPPORT_LD_DEBUG is not set/
s/^SUPPORT_LD_DEBUG_EARLY= y/# SUPPORT_LD_DEBUG_EARLY is not set/
2007-05-19 22:52:47 +00:00
s/^UCLIBC_MALLOC_DEBUGGING= y/# UCLIBC_MALLOC_DEBUGGING is not set/
2007-02-24 11:00:05 +00:00
ENDSED
; ;
2)
cat >>" ${ munge_file } " <<-ENDSE D
s/^# DODEBUG is not set.*/DODEBUG= y/
s/^# DODEBUG_PT is not set.*/DODEBUG_PT= y/
s/^# DOASSERTS is not set.*/DOASSERTS= y/
s/^# SUPPORT_LD_DEBUG is not set.*/SUPPORT_LD_DEBUG= y/
s/^# SUPPORT_LD_DEBUG_EARLY is not set.*/SUPPORT_LD_DEBUG_EARLY= y/
2007-05-19 22:52:47 +00:00
s/^# UCLIBC_MALLOC_DEBUGGING is not set/UCLIBC_MALLOC_DEBUGGING= y/
2007-02-24 11:00:05 +00:00
ENDSED
; ;
esac
2007-07-28 11:59:37 +00:00
sed -r -f " ${ munge_file } " " ${ src_config_file } " >" ${ dst_config_file } "
2007-02-24 11:00:05 +00:00
}