2007-02-24 11:00:05 +00:00
|
|
|
# This file adds the function to build the core gcc C compiler
|
|
|
|
# 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 core gcc
|
|
|
|
do_cc_core_get() {
|
|
|
|
# Ah! gcc folks are kind of 'different': they store the tarballs in
|
|
|
|
# subdirectories of the same name! That's because gcc is such /crap/ that
|
|
|
|
# it is such /big/ that it needs being splitted for distribution! Sad. :-(
|
|
|
|
# Arrgghh! Some of those versions does not follow this convention:
|
|
|
|
# gcc-3.3.3 lives in releases/gcc-3.3.3, while gcc-2.95.* isn't in a
|
|
|
|
# subdirectory! You bastard!
|
|
|
|
CT_GetFile "${CT_CC_CORE_FILE}" \
|
|
|
|
ftp://ftp.gnu.org/gnu/gcc/${CT_CC_CORE_FILE} \
|
|
|
|
ftp://ftp.gnu.org/gnu/gcc/releases/${CT_CC_CORE_FILE} \
|
|
|
|
ftp://ftp.gnu.org/gnu/gcc
|
|
|
|
}
|
|
|
|
|
|
|
|
# Extract core gcc
|
|
|
|
do_cc_core_extract() {
|
|
|
|
CT_ExtractAndPatch "${CT_CC_CORE_FILE}"
|
|
|
|
}
|
|
|
|
|
|
|
|
# Build core gcc
|
2007-02-24 11:00:05 +00:00
|
|
|
do_cc_core() {
|
|
|
|
mkdir -p "${CT_BUILD_DIR}/build-cc-core"
|
|
|
|
cd "${CT_BUILD_DIR}/build-cc-core"
|
|
|
|
|
|
|
|
CT_DoStep INFO "Installing core C compiler"
|
|
|
|
|
|
|
|
CT_DoLog EXTRA "Copy headers to install area of bootstrap gcc, so it can build libgcc2"
|
|
|
|
mkdir -p "${CT_CC_CORE_PREFIX_DIR}/${CT_TARGET}/include"
|
|
|
|
cp -r "${CT_HEADERS_DIR}"/* "${CT_CC_CORE_PREFIX_DIR}/${CT_TARGET}/include" 2>&1 |CT_DoLog DEBUG
|
|
|
|
|
|
|
|
CT_DoLog EXTRA "Configuring core C compiler"
|
|
|
|
|
|
|
|
extra_config=""
|
|
|
|
[ "${CT_ARCH_FLOAT_SW}" = "y" ] && extra_config="${extra_config} --with-float=soft"
|
2007-04-21 17:31:51 +00:00
|
|
|
[ -n "${CT_ARCH_ABI}" ] && extra_config="${extra_config} --with-abi=${CT_ARCH_ABI}"
|
2007-02-24 11:00:05 +00:00
|
|
|
[ -n "${CT_ARCH_CPU}" ] && extra_config="${extra_config} --with-cpu=${CT_ARCH_CPU}"
|
|
|
|
[ -n "${CT_ARCH_TUNE}" ] && extra_config="${extra_config} --with-tune=${CT_ARCH_TUNE}"
|
|
|
|
[ -n "${CT_ARCH_ARCH}" ] && extra_config="${extra_config} --with-arch=${CT_ARCH_ARCH}"
|
|
|
|
[ -n "${CT_ARCH_FPU}" ] && extra_config="${extra_config} --with-fpu=${CT_ARCH_FPU}"
|
2007-03-21 21:03:22 +00:00
|
|
|
[ "${CT_CC_CXA_ATEXIT}" == "y" ] && extra_config="${extra_config} --enable-__cxa_atexit"
|
2007-02-24 11:00:05 +00:00
|
|
|
|
|
|
|
CT_DoLog DEBUG "Extra config passed: \"${extra_config}\""
|
|
|
|
|
|
|
|
# Use --with-local-prefix so older gccs don't look in /usr/local (http://gcc.gnu.org/PR10532)
|
|
|
|
CFLAGS="${CT_CFLAGS_FOR_HOST}" \
|
|
|
|
"${CT_SRC_DIR}/${CT_CC_CORE_FILE}/configure" \
|
|
|
|
${CT_CANADIAN_OPT} \
|
|
|
|
--target=${CT_TARGET} \
|
|
|
|
--host=${CT_HOST} \
|
|
|
|
--prefix="${CT_CC_CORE_PREFIX_DIR}" \
|
|
|
|
--with-local-prefix="${CT_SYSROOT_DIR}" \
|
|
|
|
--disable-multilib \
|
|
|
|
--with-newlib \
|
|
|
|
${CC_CORE_SYSROOT_ARG} \
|
|
|
|
${extra_config} \
|
|
|
|
--disable-nls \
|
|
|
|
--enable-threads=no \
|
|
|
|
--enable-symvers=gnu \
|
|
|
|
--enable-languages=c \
|
|
|
|
--disable-shared \
|
Huge fixes to glibc build, so that we can build at least (and at last):
- use ports addon even when installing headers,
- use optimisation (-O) when installing headers, to avoid unnecessary warnings (thanks Robert P. J. DAY for pointing this out!),
- lowest kernel version to use is only X.Y.Z, not X.Y.Z.T,
- a bit of preparations for NPTL (RSN I hope),
- fix fixing the linker scripts (changing the backup file is kind of useless and stupid);
Shut uClibc finish step: there really is nothing to do;
Add a patch for glibc-2.3.6 weak aliases handling on some archs (ARM and ALPHA at least);
Did not catch the make errors: fixed the pattern matching in scripts/functions;
Introduce a new log level, ALL:
- send components' build messages there,
- DEBUG log level is destined only for crosstool-NG debug messages,
- migrate sub-actions to use appropriate log levels;
Update the armeb-unknown-linux-gnu sample:
- it builds!
- uses gcc-4.0.4 and glibc-2.3.6,
- updated to latest config options set.
2007-05-08 17:48:32 +00:00
|
|
|
${CT_CC_CORE_EXTRA_CONFIG} 2>&1 |CT_DoLog ALL
|
2007-02-24 11:00:05 +00:00
|
|
|
|
|
|
|
if [ ! "${CT_CANADIAN}" = "y" ]; then
|
|
|
|
CT_DoLog EXTRA "Building libiberty"
|
Huge fixes to glibc build, so that we can build at least (and at last):
- use ports addon even when installing headers,
- use optimisation (-O) when installing headers, to avoid unnecessary warnings (thanks Robert P. J. DAY for pointing this out!),
- lowest kernel version to use is only X.Y.Z, not X.Y.Z.T,
- a bit of preparations for NPTL (RSN I hope),
- fix fixing the linker scripts (changing the backup file is kind of useless and stupid);
Shut uClibc finish step: there really is nothing to do;
Add a patch for glibc-2.3.6 weak aliases handling on some archs (ARM and ALPHA at least);
Did not catch the make errors: fixed the pattern matching in scripts/functions;
Introduce a new log level, ALL:
- send components' build messages there,
- DEBUG log level is destined only for crosstool-NG debug messages,
- migrate sub-actions to use appropriate log levels;
Update the armeb-unknown-linux-gnu sample:
- it builds!
- uses gcc-4.0.4 and glibc-2.3.6,
- updated to latest config options set.
2007-05-08 17:48:32 +00:00
|
|
|
make ${PARALLELMFLAGS} all-build-libiberty 2>&1 |CT_DoLog ALL
|
2007-02-24 11:00:05 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
CT_DoLog EXTRA "Building core C compiler"
|
Huge fixes to glibc build, so that we can build at least (and at last):
- use ports addon even when installing headers,
- use optimisation (-O) when installing headers, to avoid unnecessary warnings (thanks Robert P. J. DAY for pointing this out!),
- lowest kernel version to use is only X.Y.Z, not X.Y.Z.T,
- a bit of preparations for NPTL (RSN I hope),
- fix fixing the linker scripts (changing the backup file is kind of useless and stupid);
Shut uClibc finish step: there really is nothing to do;
Add a patch for glibc-2.3.6 weak aliases handling on some archs (ARM and ALPHA at least);
Did not catch the make errors: fixed the pattern matching in scripts/functions;
Introduce a new log level, ALL:
- send components' build messages there,
- DEBUG log level is destined only for crosstool-NG debug messages,
- migrate sub-actions to use appropriate log levels;
Update the armeb-unknown-linux-gnu sample:
- it builds!
- uses gcc-4.0.4 and glibc-2.3.6,
- updated to latest config options set.
2007-05-08 17:48:32 +00:00
|
|
|
make ${PARALLELMFLAGS} all-gcc 2>&1 |CT_DoLog ALL
|
2007-02-24 11:00:05 +00:00
|
|
|
|
|
|
|
CT_DoLog EXTRA "Installing core C compiler"
|
Huge fixes to glibc build, so that we can build at least (and at last):
- use ports addon even when installing headers,
- use optimisation (-O) when installing headers, to avoid unnecessary warnings (thanks Robert P. J. DAY for pointing this out!),
- lowest kernel version to use is only X.Y.Z, not X.Y.Z.T,
- a bit of preparations for NPTL (RSN I hope),
- fix fixing the linker scripts (changing the backup file is kind of useless and stupid);
Shut uClibc finish step: there really is nothing to do;
Add a patch for glibc-2.3.6 weak aliases handling on some archs (ARM and ALPHA at least);
Did not catch the make errors: fixed the pattern matching in scripts/functions;
Introduce a new log level, ALL:
- send components' build messages there,
- DEBUG log level is destined only for crosstool-NG debug messages,
- migrate sub-actions to use appropriate log levels;
Update the armeb-unknown-linux-gnu sample:
- it builds!
- uses gcc-4.0.4 and glibc-2.3.6,
- updated to latest config options set.
2007-05-08 17:48:32 +00:00
|
|
|
make install-gcc 2>&1 |CT_DoLog ALL
|
2007-02-24 11:00:05 +00:00
|
|
|
|
|
|
|
CT_EndStep
|
|
|
|
}
|
2007-05-08 12:12:40 +00:00
|
|
|
|