2007-08-15 10:14:43 +00:00
|
|
|
# This file adds the function to build the gcc C compiler
|
2007-02-24 11:00:05 +00:00
|
|
|
# Copyright 2007 Yann E. MORIN
|
|
|
|
# Licensed under the GPL v2. See COPYING in the root of this package
|
|
|
|
|
2008-04-30 10:43:41 +00:00
|
|
|
# Download gcc
|
2007-05-07 09:04:02 +00:00
|
|
|
do_cc_get() {
|
2011-02-17 21:29:33 +00:00
|
|
|
local linaro_version
|
|
|
|
local linaro_series
|
|
|
|
local linaro_base_url="http://launchpad.net/gcc-linaro"
|
|
|
|
|
|
|
|
|
|
|
|
# Account for the Linaro versioning
|
|
|
|
linaro_version="$( echo "${CT_CC_VERSION}" \
|
|
|
|
|sed -r -e 's/^linaro-//;' \
|
|
|
|
)"
|
|
|
|
linaro_series="$( echo "${linaro_version}" \
|
|
|
|
|sed -r -e 's/-.*//;' \
|
|
|
|
)"
|
|
|
|
|
2007-05-07 09:04:02 +00:00
|
|
|
# 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!
|
2009-05-25 20:09:17 +00:00
|
|
|
CT_GetFile "gcc-${CT_CC_VERSION}" \
|
|
|
|
{ftp,http}://ftp.gnu.org/gnu/gcc{,{,/releases}/gcc-${CT_CC_VERSION}} \
|
|
|
|
ftp://ftp.irisa.fr/pub/mirrors/gcc.gnu.org/gcc/releases/gcc-${CT_CC_VERSION} \
|
2011-02-17 21:29:33 +00:00
|
|
|
ftp://ftp.uvsq.fr/pub/gcc/snapshots/${CT_CC_VERSION} \
|
|
|
|
"${linaro_base_url}/${linaro_series}/${linaro_version}/+download"
|
2009-03-26 18:47:34 +00:00
|
|
|
|
2009-01-06 22:10:17 +00:00
|
|
|
# Starting with GCC 4.3, ecj is used for Java, and will only be
|
|
|
|
# built if the configure script finds ecj.jar at the top of the
|
|
|
|
# GCC source tree, which will not be there unless we get it and
|
|
|
|
# put it there ourselves
|
|
|
|
if [ "${CT_CC_LANG_JAVA_USE_ECJ}" = "y" ]; then
|
|
|
|
CT_GetFile ecj-latest .jar ftp://gcc.gnu.org/pub/java \
|
|
|
|
ftp://sourceware.org/pub/java
|
|
|
|
fi
|
2007-05-07 09:04:02 +00:00
|
|
|
}
|
|
|
|
|
2008-04-30 10:43:41 +00:00
|
|
|
# Extract gcc
|
2007-05-07 09:04:02 +00:00
|
|
|
do_cc_extract() {
|
2009-05-25 20:09:17 +00:00
|
|
|
CT_Extract "gcc-${CT_CC_VERSION}"
|
2010-04-11 21:18:10 +00:00
|
|
|
CT_Patch "gcc" "${CT_CC_VERSION}"
|
2009-03-26 18:47:34 +00:00
|
|
|
|
2009-01-06 22:10:17 +00:00
|
|
|
# Copy ecj-latest.jar to ecj.jar at the top of the GCC source tree
|
2009-05-25 20:09:17 +00:00
|
|
|
if [ "${CT_CC_LANG_JAVA_USE_ECJ}" = "y" \
|
|
|
|
-a ! -f "${CT_SRC_DIR}/gcc-${CT_CC_VERSION}/ecj.jar" \
|
2009-03-15 20:08:06 +00:00
|
|
|
]; then
|
2009-05-25 20:09:17 +00:00
|
|
|
CT_DoExecLog ALL cp -v "${CT_TARBALLS_DIR}/ecj-latest.jar" "${CT_SRC_DIR}/gcc-${CT_CC_VERSION}/ecj.jar"
|
2009-01-06 22:10:17 +00:00
|
|
|
fi
|
2007-05-07 09:04:02 +00:00
|
|
|
}
|
|
|
|
|
2007-08-15 10:14:43 +00:00
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
# Core gcc pass 1
|
|
|
|
do_cc_core_pass_1() {
|
2008-09-14 16:21:07 +00:00
|
|
|
# If we're building for bare metal, build the static core gcc,
|
|
|
|
# with libgcc.
|
2010-04-20 08:06:04 +00:00
|
|
|
# In case we're not bare metal and building a canadian compiler, do nothing
|
2008-09-14 16:21:07 +00:00
|
|
|
# In case we're not bare metal, and we're NPTL, build the static core gcc.
|
|
|
|
# In any other case, do nothing.
|
2010-04-20 08:06:04 +00:00
|
|
|
case "${CT_BARE_METAL},${CT_CANADIAN},${CT_THREADS}" in
|
2010-06-13 21:38:37 +00:00
|
|
|
y,*,*) do_cc_core mode=static;;
|
2010-04-20 08:06:04 +00:00
|
|
|
,y,*) ;;
|
2010-06-13 18:31:42 +00:00
|
|
|
,,nptl) do_cc_core mode=static;;
|
2008-08-12 07:47:51 +00:00
|
|
|
*) ;;
|
2007-08-15 10:14:43 +00:00
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
# Core gcc pass 2
|
|
|
|
do_cc_core_pass_2() {
|
2008-09-14 16:21:07 +00:00
|
|
|
# In case we're building for bare metal, do nothing, we already have
|
|
|
|
# our compiler.
|
2010-04-20 08:06:04 +00:00
|
|
|
# In case we're not bare metal and building a canadian compiler, do nothing
|
2008-09-30 18:19:18 +00:00
|
|
|
# In case we're NPTL, build the shared core gcc and the target libgcc.
|
|
|
|
# In any other case, build the static core gcc and, if using gcc-4.3+,
|
|
|
|
# also build the target libgcc.
|
2010-04-20 08:06:04 +00:00
|
|
|
case "${CT_BARE_METAL},${CT_CANADIAN},${CT_THREADS}" in
|
2010-12-09 17:55:59 +00:00
|
|
|
y,*,*)
|
|
|
|
if [ "${CT_STATIC_TOOLCHAIN}" = "y" ]; then
|
2011-11-15 21:06:21 +00:00
|
|
|
do_cc_core mode=baremetal build_libgcc=yes build_libstdcxx=yes build_staticlinked=yes build_manuals=yes
|
2010-12-09 17:55:59 +00:00
|
|
|
else
|
2011-11-15 21:06:21 +00:00
|
|
|
do_cc_core mode=baremetal build_libgcc=yes build_libstdcxx=yes build_manuals=yes
|
2010-12-09 17:55:59 +00:00
|
|
|
fi
|
|
|
|
;;
|
2010-06-13 21:38:37 +00:00
|
|
|
,y,*) ;;
|
2010-04-20 08:06:04 +00:00
|
|
|
,,nptl)
|
2008-09-30 18:19:18 +00:00
|
|
|
do_cc_core mode=shared build_libgcc=yes
|
|
|
|
;;
|
2010-12-09 17:55:59 +00:00
|
|
|
,,win32)
|
|
|
|
do_cc_core mode=static build_libgcc=yes
|
2010-07-11 19:36:20 +00:00
|
|
|
;;
|
2008-09-30 18:19:18 +00:00
|
|
|
*) if [ "${CT_CC_GCC_4_3_or_later}" = "y" ]; then
|
|
|
|
do_cc_core mode=static build_libgcc=yes
|
|
|
|
else
|
2010-06-13 18:31:42 +00:00
|
|
|
do_cc_core mode=static
|
2008-09-30 18:19:18 +00:00
|
|
|
fi
|
|
|
|
;;
|
2007-08-15 10:14:43 +00:00
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------------
|
2008-08-12 07:47:51 +00:00
|
|
|
# Build core gcc
|
|
|
|
# This function is used to build both the static and the shared core C conpiler,
|
|
|
|
# with or without the target libgcc. We need to know wether:
|
2008-09-14 16:21:07 +00:00
|
|
|
# - we're building static, shared or bare metal: mode=[static|shared|baremetal]
|
2010-12-09 17:55:59 +00:00
|
|
|
# - we need to build libgcc or not : build_libgcc=[yes|no] (default: no)
|
|
|
|
# - we need to build libstdc++ or not : build_libstdcxx=[yes|no] (default: no)
|
|
|
|
# - we need to build statically linked or not : build_staticlinked=[yes|no] (default: no)
|
|
|
|
# Usage: do_cc_core mode=[static|shared|baremetal] build_libgcc=[yes|no] build_staticlinked=[yes|no]
|
2008-08-12 07:47:51 +00:00
|
|
|
do_cc_core() {
|
|
|
|
local mode
|
2010-06-13 18:31:42 +00:00
|
|
|
local build_libgcc=no
|
2010-06-13 21:38:37 +00:00
|
|
|
local build_libstdcxx=no
|
2010-12-09 17:55:59 +00:00
|
|
|
local build_staticlinked=no
|
2011-11-15 21:06:21 +00:00
|
|
|
local build_manuals=no
|
2008-08-12 07:47:51 +00:00
|
|
|
local core_prefix_dir
|
2008-12-24 17:34:32 +00:00
|
|
|
local lang_opt
|
2009-08-19 17:44:42 +00:00
|
|
|
local tmp
|
2011-03-27 23:07:31 +00:00
|
|
|
local -a host_libstdcxx_flags
|
2009-08-19 17:44:42 +00:00
|
|
|
local -a extra_config
|
2010-12-09 17:55:59 +00:00
|
|
|
local -a core_LDFLAGS
|
2010-06-13 18:43:02 +00:00
|
|
|
local -a core_targets
|
2007-08-15 10:14:43 +00:00
|
|
|
|
2010-06-13 18:31:42 +00:00
|
|
|
while [ $# -ne 0 ]; do
|
2011-04-14 22:05:53 +00:00
|
|
|
eval "${1// /\\ }"
|
2010-06-13 18:31:42 +00:00
|
|
|
shift
|
|
|
|
done
|
2008-08-12 07:47:51 +00:00
|
|
|
|
2008-12-24 17:34:32 +00:00
|
|
|
lang_opt=c
|
2008-08-12 07:47:51 +00:00
|
|
|
case "${mode}" in
|
|
|
|
static)
|
|
|
|
core_prefix_dir="${CT_CC_CORE_STATIC_PREFIX_DIR}"
|
2009-08-19 17:44:42 +00:00
|
|
|
extra_config+=("--with-newlib")
|
|
|
|
extra_config+=("--enable-threads=no")
|
|
|
|
extra_config+=("--disable-shared")
|
2010-06-13 21:38:37 +00:00
|
|
|
copy_headers=y # For baremetal, as there's no headers to copy,
|
|
|
|
# we copy an empty directory. So, who cares?
|
2008-08-12 07:47:51 +00:00
|
|
|
;;
|
|
|
|
shared)
|
|
|
|
core_prefix_dir="${CT_CC_CORE_SHARED_PREFIX_DIR}"
|
2009-08-19 17:44:42 +00:00
|
|
|
extra_config+=("--enable-shared")
|
2008-09-14 16:21:07 +00:00
|
|
|
copy_headers=y
|
|
|
|
;;
|
|
|
|
baremetal)
|
|
|
|
core_prefix_dir="${CT_PREFIX_DIR}"
|
2009-08-19 17:44:42 +00:00
|
|
|
extra_config+=("--with-newlib")
|
|
|
|
extra_config+=("--enable-threads=no")
|
|
|
|
extra_config+=("--disable-shared")
|
2008-12-24 17:34:32 +00:00
|
|
|
[ "${CT_CC_LANG_CXX}" = "y" ] && lang_opt="${lang_opt},c++"
|
2008-09-14 16:21:07 +00:00
|
|
|
copy_headers=n
|
2008-08-12 07:47:51 +00:00
|
|
|
;;
|
2010-06-13 18:31:42 +00:00
|
|
|
*)
|
|
|
|
CT_Abort "Internal Error: 'mode' must be one of: 'static', 'shared' or 'baremetal', not '${mode:-(empty)}'"
|
|
|
|
;;
|
2008-08-12 07:47:51 +00:00
|
|
|
esac
|
2007-08-15 10:14:43 +00:00
|
|
|
|
2010-06-13 18:31:42 +00:00
|
|
|
CT_DoStep INFO "Installing ${mode} core C compiler"
|
|
|
|
mkdir -p "${CT_BUILD_DIR}/build-cc-core-${mode}"
|
|
|
|
cd "${CT_BUILD_DIR}/build-cc-core-${mode}"
|
|
|
|
|
2011-05-31 18:12:35 +00:00
|
|
|
if [ "${CT_CC_GCC_HAS_PKGVERSION_BUGURL}" = "y" ]; then
|
|
|
|
# Bare metal delivers the core compiler as final compiler, so add version info and bugurl
|
2011-06-03 15:21:56 +00:00
|
|
|
extra_config+=("--with-pkgversion=${CT_PKGVERSION}")
|
|
|
|
[ -n "${CT_TOOLCHAIN_BUGURL}" ] && extra_config+=("--with-bugurl=${CT_TOOLCHAIN_BUGURL}")
|
2011-05-31 18:12:35 +00:00
|
|
|
fi
|
2010-04-09 19:04:33 +00:00
|
|
|
|
2008-09-14 16:21:07 +00:00
|
|
|
if [ "${copy_headers}" = "y" ]; then
|
|
|
|
CT_DoLog DEBUG "Copying headers to install area of bootstrap gcc, so it can build libgcc2"
|
2010-06-13 18:25:00 +00:00
|
|
|
CT_DoExecLog ALL cp -a "${CT_HEADERS_DIR}" "${core_prefix_dir}/${CT_TARGET}/include"
|
2008-09-14 16:21:07 +00:00
|
|
|
fi
|
2007-08-15 10:14:43 +00:00
|
|
|
|
2008-08-12 07:47:51 +00:00
|
|
|
CT_DoLog EXTRA "Configuring ${mode} core C compiler"
|
2007-08-15 10:14:43 +00:00
|
|
|
|
2009-08-19 17:44:42 +00:00
|
|
|
for tmp in ARCH ABI CPU TUNE FPU FLOAT; do
|
|
|
|
eval tmp="\${CT_ARCH_WITH_${tmp}}"
|
|
|
|
if [ -n "${tmp}" ]; then
|
|
|
|
extra_config+=("${tmp}")
|
|
|
|
fi
|
|
|
|
done
|
2008-05-22 22:38:37 +00:00
|
|
|
if [ "${CT_CC_CXA_ATEXIT}" = "y" ]; then
|
2009-08-19 17:44:42 +00:00
|
|
|
extra_config+=("--enable-__cxa_atexit")
|
2008-05-22 22:38:37 +00:00
|
|
|
else
|
2009-08-19 17:44:42 +00:00
|
|
|
extra_config+=("--disable-__cxa_atexit")
|
2008-05-22 22:38:37 +00:00
|
|
|
fi
|
2007-08-15 10:14:43 +00:00
|
|
|
|
2010-12-09 17:55:59 +00:00
|
|
|
# *** WARNING ! ***
|
|
|
|
# Keep this full if-else-if-elif-fi-fi block in sync
|
|
|
|
# with the same block in do_cc, below.
|
|
|
|
if [ "${build_staticlinked}" = "yes" ]; then
|
|
|
|
core_LDFLAGS+=("-static")
|
2011-03-27 23:07:31 +00:00
|
|
|
host_libstdcxx_flags+=("-static-libgcc")
|
|
|
|
host_libstdcxx_flags+=("-Wl,-Bstatic,-lstdc++")
|
|
|
|
host_libstdcxx_flags+=("-lm")
|
2010-12-09 17:55:59 +00:00
|
|
|
# Companion libraries are build static (eg !shared), so
|
|
|
|
# the libstdc++ is not pulled automatically, although it
|
|
|
|
# is needed. Shoe-horn it in our LDFLAGS
|
|
|
|
# Ditto libm on some Fedora boxen
|
2011-03-26 23:09:42 +00:00
|
|
|
core_LDFLAGS+=("-lstdc++")
|
|
|
|
core_LDFLAGS+=("-lm")
|
2010-12-09 17:55:59 +00:00
|
|
|
else
|
|
|
|
if [ "${CT_CC_STATIC_LIBSTDCXX}" = "y" ]; then
|
|
|
|
# this is from CodeSourcery arm-2010q1-202-arm-none-linux-gnueabi.src.tar.bz2
|
|
|
|
# build script
|
2011-05-30 23:30:54 +00:00
|
|
|
# INFO: if the host gcc is gcc-4.5 then presumably we could use -static-libstdc++,
|
|
|
|
# see http://gcc.gnu.org/ml/gcc-patches/2009-06/msg01635.html
|
2011-03-27 23:07:31 +00:00
|
|
|
host_libstdcxx_flags+=("-static-libgcc")
|
|
|
|
host_libstdcxx_flags+=("-Wl,-Bstatic,-lstdc++,-Bdynamic")
|
|
|
|
host_libstdcxx_flags+=("-lm")
|
2010-12-09 17:55:59 +00:00
|
|
|
elif [ "${CT_COMPLIBS_SHARED}" != "y" ]; then
|
|
|
|
# When companion libraries are build static (eg !shared),
|
|
|
|
# the libstdc++ is not pulled automatically, although it
|
|
|
|
# is needed. Shoe-horn it in our LDFLAGS
|
|
|
|
# Ditto libm on some Fedora boxen
|
|
|
|
core_LDFLAGS+=("-lstdc++")
|
|
|
|
core_LDFLAGS+=("-lm")
|
|
|
|
fi
|
2010-04-10 22:47:23 +00:00
|
|
|
fi
|
2010-12-09 17:55:59 +00:00
|
|
|
|
2010-04-11 09:10:06 +00:00
|
|
|
if [ "${CT_CC_GCC_USE_GMP_MPFR}" = "y" ]; then
|
|
|
|
extra_config+=("--with-gmp=${CT_COMPLIBS_DIR}")
|
|
|
|
extra_config+=("--with-mpfr=${CT_COMPLIBS_DIR}")
|
|
|
|
fi
|
2010-09-12 18:54:54 +00:00
|
|
|
if [ "${CT_CC_GCC_USE_MPC}" = "y" ]; then
|
|
|
|
extra_config+=("--with-mpc=${CT_COMPLIBS_DIR}")
|
|
|
|
fi
|
|
|
|
if [ "${CT_CC_GCC_USE_GRAPHITE}" = "y" ]; then
|
2010-04-11 09:10:06 +00:00
|
|
|
extra_config+=("--with-ppl=${CT_COMPLIBS_DIR}")
|
2011-03-27 23:07:31 +00:00
|
|
|
# With PPL 0.11+, also pull libpwl if needed
|
|
|
|
if [ "${CT_PPL_NEEDS_LIBPWL}" = "y" ]; then
|
|
|
|
host_libstdcxx_flags+=("-L${CT_COMPLIBS_DIR}/lib")
|
|
|
|
host_libstdcxx_flags+=("-lpwl")
|
|
|
|
fi
|
2010-04-11 09:10:06 +00:00
|
|
|
extra_config+=("--with-cloog=${CT_COMPLIBS_DIR}")
|
2010-09-12 21:51:25 +00:00
|
|
|
elif [ "${CT_CC_GCC_HAS_GRAPHITE}" = "y" ]; then
|
|
|
|
extra_config+=("--with-ppl=no")
|
|
|
|
extra_config+=("--with-cloog=no")
|
2010-04-11 09:10:06 +00:00
|
|
|
fi
|
2010-09-12 18:54:54 +00:00
|
|
|
if [ "${CT_CC_GCC_USE_LTO}" = "y" ]; then
|
2010-04-15 20:35:18 +00:00
|
|
|
extra_config+=("--with-libelf=${CT_COMPLIBS_DIR}")
|
2010-10-08 21:51:38 +00:00
|
|
|
extra_config+=("--enable-lto")
|
2010-09-12 21:51:25 +00:00
|
|
|
elif [ "${CT_CC_GCC_HAS_LTO}" = "y" ]; then
|
|
|
|
extra_config+=("--with-libelf=no")
|
2010-10-08 21:51:38 +00:00
|
|
|
extra_config+=("--disable-lto")
|
2010-04-15 20:35:18 +00:00
|
|
|
fi
|
2010-04-11 09:10:06 +00:00
|
|
|
|
2011-03-27 23:07:31 +00:00
|
|
|
if [ ${#host_libstdcxx_flags[@]} -ne 0 ]; then
|
|
|
|
extra_config+=("--with-host-libstdcxx=${host_libstdcxx_flags[*]}")
|
|
|
|
fi
|
|
|
|
|
2010-05-24 14:34:55 +00:00
|
|
|
if [ "${CT_CC_GCC_ENABLE_TARGET_OPTSPACE}" = "y" ]; then
|
|
|
|
extra_config+=("--enable-target-optspace")
|
|
|
|
fi
|
|
|
|
|
2010-10-09 20:49:28 +00:00
|
|
|
case "${CT_CC_GCC_LDBL_128}" in
|
2010-10-20 13:25:38 +00:00
|
|
|
y) extra_config+=("--with-long-double-128");;
|
|
|
|
m) ;;
|
2010-10-09 20:49:28 +00:00
|
|
|
"") extra_config+=("--without-long-double-128");;
|
|
|
|
esac
|
|
|
|
|
2011-06-27 11:52:15 +00:00
|
|
|
if [ "${CT_CC_GCC_BUILD_ID}" = "y" ]; then
|
|
|
|
extra_config+=( --enable-linker-build-id )
|
|
|
|
fi
|
|
|
|
|
2011-06-27 13:15:00 +00:00
|
|
|
case "${CT_CC_GCC_LNK_HASH_STYLE}" in
|
|
|
|
"") ;;
|
|
|
|
*) extra_config+=( "--with-linker-hash-style=${CT_CC_GCC_LNK_HASH_STYLE}" );;
|
|
|
|
esac
|
|
|
|
|
2011-07-03 20:32:36 +00:00
|
|
|
case "${CT_ARCH}" in
|
|
|
|
mips)
|
|
|
|
case "${CT_CC_GCC_mips_llsc}" in
|
|
|
|
y) extra_config+=( --with-llsc );;
|
|
|
|
m) ;;
|
|
|
|
*) extra_config+=( --without-llsc );;
|
|
|
|
esac
|
|
|
|
case "${CT_CC_GCC_mips_synci}" in
|
|
|
|
y) extra_config+=( --with-synci );;
|
|
|
|
m) ;;
|
|
|
|
*) extra_config+=( --without-synci );;
|
|
|
|
esac
|
|
|
|
if [ "${CT_CC_GCC_mips_plt}" ]; then
|
|
|
|
extra_config+=( --with-mips-plt )
|
|
|
|
fi
|
|
|
|
;; # ARCH is mips
|
2011-06-27 16:04:50 +00:00
|
|
|
esac
|
|
|
|
|
2011-04-14 22:09:59 +00:00
|
|
|
extra_config+=(--disable-libgomp)
|
|
|
|
extra_config+=(--disable-libmudflap)
|
|
|
|
|
2011-11-17 10:00:28 +00:00
|
|
|
[ "${CT_TOOLCHAIN_ENABLE_NLS}" != "y" ] && extra_config+=("--disable-nls")
|
|
|
|
|
2010-04-11 09:10:06 +00:00
|
|
|
CT_DoLog DEBUG "Extra config passed: '${extra_config[*]}'"
|
2010-04-10 22:47:23 +00:00
|
|
|
|
2007-08-15 10:14:43 +00:00
|
|
|
# Use --with-local-prefix so older gccs don't look in /usr/local (http://gcc.gnu.org/PR10532)
|
2011-03-20 00:17:27 +00:00
|
|
|
CT_DoExecLog CFG \
|
2008-11-13 18:22:23 +00:00
|
|
|
CC_FOR_BUILD="${CT_BUILD}-gcc" \
|
2007-08-15 10:14:43 +00:00
|
|
|
CFLAGS="${CT_CFLAGS_FOR_HOST}" \
|
2010-12-09 17:55:59 +00:00
|
|
|
LDFLAGS="${core_LDFLAGS[*]}" \
|
2009-05-25 20:09:17 +00:00
|
|
|
"${CT_SRC_DIR}/gcc-${CT_CC_VERSION}/configure" \
|
2008-11-13 18:22:23 +00:00
|
|
|
--build=${CT_BUILD} \
|
2007-08-15 10:14:43 +00:00
|
|
|
--host=${CT_HOST} \
|
|
|
|
--target=${CT_TARGET} \
|
2008-08-12 07:47:51 +00:00
|
|
|
--prefix="${core_prefix_dir}" \
|
2007-08-15 10:14:43 +00:00
|
|
|
--with-local-prefix="${CT_SYSROOT_DIR}" \
|
|
|
|
--disable-multilib \
|
2010-07-28 21:55:10 +00:00
|
|
|
--disable-libmudflap \
|
2007-08-15 10:14:43 +00:00
|
|
|
${CC_CORE_SYSROOT_ARG} \
|
2009-08-19 17:44:42 +00:00
|
|
|
"${extra_config[@]}" \
|
2008-12-24 17:34:32 +00:00
|
|
|
--enable-languages="${lang_opt}" \
|
2011-05-18 21:00:46 +00:00
|
|
|
"${CT_CC_CORE_EXTRA_CONFIG_ARRAY[@]}"
|
2007-08-15 10:14:43 +00:00
|
|
|
|
2008-08-07 13:28:02 +00:00
|
|
|
if [ "${build_libgcc}" = "yes" ]; then
|
2008-08-12 07:47:51 +00:00
|
|
|
# HACK: we need to override SHLIB_LC from gcc/config/t-slibgcc-elf-ver or
|
|
|
|
# gcc/config/t-libunwind so -lc is removed from the link for
|
|
|
|
# libgcc_s.so, as we do not have a target -lc yet.
|
|
|
|
# This is not as ugly as it appears to be ;-) All symbols get resolved
|
|
|
|
# during the glibc build, and we provide a proper libgcc_s.so for the
|
|
|
|
# cross toolchain during the final gcc build.
|
|
|
|
#
|
|
|
|
# As we cannot modify the source tree, nor override SHLIB_LC itself
|
|
|
|
# during configure or make, we have to edit the resultant
|
|
|
|
# gcc/libgcc.mk itself to remove -lc from the link.
|
|
|
|
# This causes us to have to jump through some hoops...
|
|
|
|
#
|
|
|
|
# To produce libgcc.mk to edit we firstly require libiberty.a,
|
|
|
|
# so we configure then build it.
|
|
|
|
# Next we have to configure gcc, create libgcc.mk then edit it...
|
|
|
|
# So much easier if we just edit the source tree, but hey...
|
2009-05-25 20:09:17 +00:00
|
|
|
if [ ! -f "${CT_SRC_DIR}/gcc-${CT_CC_VERSION}/gcc/BASE-VER" ]; then
|
2011-09-14 10:59:17 +00:00
|
|
|
CT_DoExecLog CFG make ${JOBSFLAGS} configure-libiberty
|
2011-01-22 21:35:43 +00:00
|
|
|
CT_DoExecLog ALL make ${JOBSFLAGS} -C libiberty libiberty.a
|
2011-09-14 10:59:17 +00:00
|
|
|
CT_DoExecLog CFG make ${JOBSFLAGS} configure-gcc configure-libcpp
|
2011-01-22 21:35:43 +00:00
|
|
|
CT_DoExecLog ALL make ${JOBSFLAGS} all-libcpp
|
2008-08-07 13:28:02 +00:00
|
|
|
else
|
2011-09-14 10:59:17 +00:00
|
|
|
CT_DoExecLog CFG make ${JOBSFLAGS} configure-gcc configure-libcpp configure-build-libiberty
|
2011-01-22 21:35:43 +00:00
|
|
|
CT_DoExecLog ALL make ${JOBSFLAGS} all-libcpp all-build-libiberty
|
2008-08-07 13:28:02 +00:00
|
|
|
fi
|
|
|
|
# HACK: gcc-4.2 uses libdecnumber to build libgcc.mk, so build it here.
|
2009-05-25 20:09:17 +00:00
|
|
|
if [ -d "${CT_SRC_DIR}/gcc-${CT_CC_VERSION}/libdecnumber" ]; then
|
2011-09-14 10:59:17 +00:00
|
|
|
CT_DoExecLog CFG make ${JOBSFLAGS} configure-libdecnumber
|
2011-01-22 21:35:43 +00:00
|
|
|
CT_DoExecLog ALL make ${JOBSFLAGS} -C libdecnumber libdecnumber.a
|
2008-08-07 13:28:02 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Starting with GCC 4.3, libgcc.mk is no longer built,
|
|
|
|
# and libgcc.mvars is used instead.
|
|
|
|
|
2008-09-30 18:19:18 +00:00
|
|
|
if [ "${CT_CC_GCC_4_3_or_later}" = "y" ]; then
|
2008-08-07 13:28:02 +00:00
|
|
|
libgcc_rule="libgcc.mvars"
|
2010-06-13 18:43:02 +00:00
|
|
|
core_targets=( gcc target-libgcc )
|
2008-08-07 13:28:02 +00:00
|
|
|
else
|
|
|
|
libgcc_rule="libgcc.mk"
|
2010-06-13 18:43:02 +00:00
|
|
|
core_targets=( gcc )
|
2008-08-07 13:28:02 +00:00
|
|
|
fi
|
|
|
|
|
2010-04-09 19:04:37 +00:00
|
|
|
# On bare metal and canadian build the host-compiler is used when
|
|
|
|
# actually the build-system compiler is required. Choose the correct
|
|
|
|
# compilers for canadian build and use the defaults on other
|
|
|
|
# configurations.
|
|
|
|
if [ "${CT_BARE_METAL},${CT_CANADIAN}" = "y,y" ]; then
|
|
|
|
repair_cc="CC_FOR_BUILD=${CT_BUILD}-gcc \
|
|
|
|
GCC_FOR_TARGET=${CT_TARGET}-gcc"
|
|
|
|
else
|
|
|
|
repair_cc=""
|
|
|
|
fi
|
|
|
|
|
2011-01-22 21:35:43 +00:00
|
|
|
CT_DoExecLog ALL make ${JOBSFLAGS} -C gcc ${libgcc_rule} \
|
2010-04-09 19:04:37 +00:00
|
|
|
${repair_cc}
|
2008-08-07 13:28:02 +00:00
|
|
|
sed -r -i -e 's@-lc@@g' gcc/${libgcc_rule}
|
|
|
|
else # build_libgcc
|
2010-06-13 18:43:02 +00:00
|
|
|
core_targets=( gcc )
|
2008-08-07 13:28:02 +00:00
|
|
|
fi # ! build libgcc
|
2010-06-13 21:38:37 +00:00
|
|
|
if [ "${build_libstdcxx}" = "yes" \
|
|
|
|
-a "${CT_CC_LANG_CXX}" = "y" \
|
|
|
|
]; then
|
|
|
|
core_targets+=( target-libstdc++-v3 )
|
|
|
|
fi
|
2008-08-04 12:38:06 +00:00
|
|
|
|
2008-08-12 07:47:51 +00:00
|
|
|
CT_DoLog EXTRA "Building ${mode} core C compiler"
|
2011-01-22 21:35:43 +00:00
|
|
|
CT_DoExecLog ALL make ${JOBSFLAGS} "${core_targets[@]/#/all-}"
|
2007-08-15 10:14:43 +00:00
|
|
|
|
2008-08-12 07:47:51 +00:00
|
|
|
CT_DoLog EXTRA "Installing ${mode} core C compiler"
|
2011-09-14 10:59:17 +00:00
|
|
|
CT_DoExecLog ALL make ${JOBSFLAGS} "${core_targets[@]/#/install-}"
|
2007-08-15 10:14:43 +00:00
|
|
|
|
2011-11-15 21:06:21 +00:00
|
|
|
if [ "${CT_BUILD_MANUALS}" = "y" -a "${build_manuals}" = "yes" ]; then
|
|
|
|
CT_DoLog EXTRA "Building the GCC manuals"
|
|
|
|
CT_DoExecLog ALL make pdf html
|
|
|
|
CT_DoLog EXTRA "Installing the GCC manuals"
|
|
|
|
CT_DoExecLog ALL make install-{pdf,html}-gcc
|
|
|
|
fi
|
|
|
|
|
2009-03-26 18:58:13 +00:00
|
|
|
# Create a symlink ${CT_TARGET}-cc to ${CT_TARGET}-gcc to always be able
|
|
|
|
# to call the C compiler with the same, somewhat canonical name.
|
2010-04-20 09:39:13 +00:00
|
|
|
# check whether compiler has an extension
|
|
|
|
file="$( ls -1 "${core_prefix_dir}/bin/${CT_TARGET}-gcc."* 2>/dev/null || true )"
|
|
|
|
[ -z "${file}" ] || ext=".${file##*.}"
|
2011-07-12 21:52:24 +00:00
|
|
|
CT_DoExecLog ALL ln -sfv "${CT_TARGET}-gcc${ext}" "${core_prefix_dir}/bin/${CT_TARGET}-cc${ext}"
|
2009-03-26 18:58:13 +00:00
|
|
|
|
2007-08-15 10:14:43 +00:00
|
|
|
CT_EndStep
|
|
|
|
}
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------------
|
2007-05-07 09:04:02 +00:00
|
|
|
# Build final gcc
|
2007-02-24 11:00:05 +00:00
|
|
|
do_cc() {
|
2011-03-27 23:07:31 +00:00
|
|
|
local -a host_libstdcxx_flags
|
2009-08-19 17:44:42 +00:00
|
|
|
local -a extra_config
|
2010-12-09 17:55:42 +00:00
|
|
|
local -a final_LDFLAGS
|
2009-08-19 17:44:42 +00:00
|
|
|
local tmp
|
|
|
|
|
2008-09-14 16:21:07 +00:00
|
|
|
# If building for bare metal, nothing to be done here, the static core conpiler is enough!
|
|
|
|
[ "${CT_BARE_METAL}" = "y" ] && return 0
|
|
|
|
|
2007-04-23 21:03:49 +00:00
|
|
|
CT_DoStep INFO "Installing final compiler"
|
2007-02-24 11:00:05 +00:00
|
|
|
|
|
|
|
mkdir -p "${CT_BUILD_DIR}/build-cc"
|
|
|
|
cd "${CT_BUILD_DIR}/build-cc"
|
|
|
|
|
2007-05-01 09:03:40 +00:00
|
|
|
CT_DoLog EXTRA "Configuring final compiler"
|
2007-02-24 11:00:05 +00:00
|
|
|
|
|
|
|
# Enable selected languages
|
|
|
|
lang_opt="c"
|
|
|
|
[ "${CT_CC_LANG_CXX}" = "y" ] && lang_opt="${lang_opt},c++"
|
|
|
|
[ "${CT_CC_LANG_FORTRAN}" = "y" ] && lang_opt="${lang_opt},fortran"
|
|
|
|
[ "${CT_CC_LANG_ADA}" = "y" ] && lang_opt="${lang_opt},ada"
|
|
|
|
[ "${CT_CC_LANG_JAVA}" = "y" ] && lang_opt="${lang_opt},java"
|
|
|
|
[ "${CT_CC_LANG_OBJC}" = "y" ] && lang_opt="${lang_opt},objc"
|
|
|
|
[ "${CT_CC_LANG_OBJCXX}" = "y" ] && lang_opt="${lang_opt},obj-c++"
|
|
|
|
CT_Test "Building ADA language is not yet supported. Will try..." "${CT_CC_LANG_ADA}" = "y"
|
|
|
|
CT_Test "Building Objective-C language is not yet supported. Will try..." "${CT_CC_LANG_OBJC}" = "y"
|
|
|
|
CT_Test "Building Objective-C++ language is not yet supported. Will try..." "${CT_CC_LANG_OBJCXX}" = "y"
|
2008-04-30 10:43:41 +00:00
|
|
|
CT_Test "Building ${CT_CC_LANG_OTHERS//,/ } language(s) is not yet supported. Will try..." -n "${CT_CC_LANG_OTHERS}"
|
2008-05-20 21:32:39 +00:00
|
|
|
lang_opt=$(echo "${lang_opt},${CT_CC_LANG_OTHERS}" |sed -r -e 's/,+/,/g; s/,*$//;')
|
2007-02-24 11:00:05 +00:00
|
|
|
|
2009-08-19 17:44:42 +00:00
|
|
|
extra_config+=("--enable-languages=${lang_opt}")
|
|
|
|
extra_config+=("--disable-multilib")
|
|
|
|
for tmp in ARCH ABI CPU TUNE FPU FLOAT; do
|
|
|
|
eval tmp="\${CT_ARCH_WITH_${tmp}}"
|
|
|
|
if [ -n "${tmp}" ]; then
|
|
|
|
extra_config+=("${tmp}")
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2011-05-31 18:12:35 +00:00
|
|
|
[ "${CT_SHARED_LIBS}" = "y" ] || extra_config+=("--disable-shared")
|
|
|
|
if [ "${CT_CC_GCC_HAS_PKGVERSION_BUGURL}" = "y" ]; then
|
2011-06-03 15:21:56 +00:00
|
|
|
extra_config+=("--with-pkgversion=${CT_PKGVERSION}")
|
|
|
|
[ -n "${CT_TOOLCHAIN_BUGURL}" ] && extra_config+=("--with-bugurl=${CT_TOOLCHAIN_BUGURL}")
|
2011-05-31 18:12:35 +00:00
|
|
|
fi
|
2010-07-28 21:53:09 +00:00
|
|
|
case "${CT_CC_GCC_SJLJ_EXCEPTIONS}" in
|
|
|
|
y) extra_config+=("--enable-sjlj-exceptions");;
|
|
|
|
m) ;;
|
|
|
|
"") extra_config+=("--disable-sjlj-exceptions");;
|
|
|
|
esac
|
2008-05-22 22:38:37 +00:00
|
|
|
if [ "${CT_CC_CXA_ATEXIT}" = "y" ]; then
|
2009-08-19 17:44:42 +00:00
|
|
|
extra_config+=("--enable-__cxa_atexit")
|
2008-05-22 22:38:37 +00:00
|
|
|
else
|
2009-08-19 17:44:42 +00:00
|
|
|
extra_config+=("--disable-__cxa_atexit")
|
2008-05-22 22:38:37 +00:00
|
|
|
fi
|
2011-05-24 12:15:47 +00:00
|
|
|
if [ -n "${CT_CC_ENABLE_CXX_FLAGS}" ]; then
|
|
|
|
extra_config+=("--enable-cxx-flags=${CT_CC_ENABLE_CXX_FLAGS}")
|
2009-05-27 21:16:01 +00:00
|
|
|
fi
|
2010-07-28 21:55:10 +00:00
|
|
|
if [ "${CT_CC_GCC_LIBMUDFLAP}" = "y" ]; then
|
|
|
|
extra_config+=(--enable-libmudflap)
|
|
|
|
else
|
|
|
|
extra_config+=(--disable-libmudflap)
|
|
|
|
fi
|
2010-10-08 21:58:58 +00:00
|
|
|
if [ "${CT_CC_GCC_LIBGOMP}" = "y" ]; then
|
|
|
|
extra_config+=(--enable-libgomp)
|
|
|
|
else
|
|
|
|
extra_config+=(--disable-libgomp)
|
|
|
|
fi
|
2010-10-09 09:38:04 +00:00
|
|
|
if [ "${CT_CC_GCC_LIBSSP}" = "y" ]; then
|
|
|
|
extra_config+=(--enable-libssp)
|
|
|
|
else
|
|
|
|
extra_config+=(--disable-libssp)
|
|
|
|
fi
|
2010-04-11 09:10:06 +00:00
|
|
|
|
2010-12-09 17:55:59 +00:00
|
|
|
# *** WARNING ! ***
|
|
|
|
# Keep this full if-else-if-elif-fi-fi block in sync
|
|
|
|
# with the same block in do_cc_core, above.
|
2010-12-09 17:55:42 +00:00
|
|
|
if [ "${CT_STATIC_TOOLCHAIN}" = "y" ]; then
|
|
|
|
final_LDFLAGS+=("-static")
|
2011-03-27 23:07:31 +00:00
|
|
|
host_libstdcxx_flags+=("-static-libgcc")
|
|
|
|
host_libstdcxx_flags+=("-Wl,-Bstatic,-lstdc++")
|
|
|
|
host_libstdcxx_flags+=("-lm")
|
2010-12-09 17:55:42 +00:00
|
|
|
# Companion libraries are build static (eg !shared), so
|
2010-07-29 17:47:16 +00:00
|
|
|
# the libstdc++ is not pulled automatically, although it
|
|
|
|
# is needed. Shoe-horn it in our LDFLAGS
|
2010-08-05 16:19:07 +00:00
|
|
|
# Ditto libm on some Fedora boxen
|
2010-12-09 17:55:42 +00:00
|
|
|
final_LDFLAGS+=("-lstdc++")
|
|
|
|
final_LDFLAGS+=("-lm")
|
|
|
|
else
|
|
|
|
if [ "${CT_CC_STATIC_LIBSTDCXX}" = "y" ]; then
|
|
|
|
# this is from CodeSourcery arm-2010q1-202-arm-none-linux-gnueabi.src.tar.bz2
|
|
|
|
# build script
|
2011-05-30 23:30:54 +00:00
|
|
|
# INFO: if the host gcc is gcc-4.5 then presumably we could use -static-libstdc++,
|
|
|
|
# see http://gcc.gnu.org/ml/gcc-patches/2009-06/msg01635.html
|
2011-03-27 23:07:31 +00:00
|
|
|
host_libstdcxx_flags+=("-static-libgcc")
|
|
|
|
host_libstdcxx_flags+=("-Wl,-Bstatic,-lstdc++,-Bdynamic")
|
|
|
|
host_libstdcxx_flags+=("-lm")
|
2010-12-09 17:55:42 +00:00
|
|
|
elif [ "${CT_COMPLIBS_SHARED}" != "y" ]; then
|
|
|
|
# When companion libraries are build static (eg !shared),
|
|
|
|
# the libstdc++ is not pulled automatically, although it
|
|
|
|
# is needed. Shoe-horn it in our LDFLAGS
|
|
|
|
# Ditto libm on some Fedora boxen
|
|
|
|
final_LDFLAGS+=("-lstdc++")
|
|
|
|
final_LDFLAGS+=("-lm")
|
|
|
|
fi
|
2010-04-11 09:10:06 +00:00
|
|
|
fi
|
2010-12-09 17:55:42 +00:00
|
|
|
|
2010-04-07 16:35:21 +00:00
|
|
|
if [ "${CT_CC_GCC_USE_GMP_MPFR}" = "y" ]; then
|
2010-04-11 09:10:06 +00:00
|
|
|
extra_config+=("--with-gmp=${CT_COMPLIBS_DIR}")
|
|
|
|
extra_config+=("--with-mpfr=${CT_COMPLIBS_DIR}")
|
2010-03-05 17:55:25 +00:00
|
|
|
fi
|
2010-09-12 18:54:54 +00:00
|
|
|
if [ "${CT_CC_GCC_USE_MPC}" = "y" ]; then
|
|
|
|
extra_config+=("--with-mpc=${CT_COMPLIBS_DIR}")
|
|
|
|
fi
|
|
|
|
if [ "${CT_CC_GCC_USE_GRAPHITE}" = "y" ]; then
|
2010-04-11 09:10:06 +00:00
|
|
|
extra_config+=("--with-ppl=${CT_COMPLIBS_DIR}")
|
2011-03-27 23:07:31 +00:00
|
|
|
# With PPL 0.11+, also pull libpwl if needed
|
|
|
|
if [ "${CT_PPL_NEEDS_LIBPWL}" = "y" ]; then
|
|
|
|
host_libstdcxx_flags+=("-L${CT_COMPLIBS_DIR}/lib")
|
|
|
|
host_libstdcxx_flags+=("-lpwl")
|
|
|
|
fi
|
2010-04-11 09:10:06 +00:00
|
|
|
extra_config+=("--with-cloog=${CT_COMPLIBS_DIR}")
|
2010-09-12 21:51:25 +00:00
|
|
|
elif [ "${CT_CC_GCC_HAS_GRAPHITE}" = "y" ]; then
|
|
|
|
extra_config+=("--with-ppl=no")
|
|
|
|
extra_config+=("--with-cloog=no")
|
2010-03-05 17:55:25 +00:00
|
|
|
fi
|
2010-09-12 18:54:54 +00:00
|
|
|
if [ "${CT_CC_GCC_USE_LTO}" = "y" ]; then
|
2010-04-15 20:35:18 +00:00
|
|
|
extra_config+=("--with-libelf=${CT_COMPLIBS_DIR}")
|
2010-09-12 21:51:25 +00:00
|
|
|
elif [ "${CT_CC_GCC_HAS_LTO}" = "y" ]; then
|
|
|
|
extra_config+=("--with-libelf=no")
|
2010-04-15 20:35:18 +00:00
|
|
|
fi
|
2007-02-24 11:00:05 +00:00
|
|
|
|
2011-03-27 23:07:31 +00:00
|
|
|
if [ ${#host_libstdcxx_flags[@]} -ne 0 ]; then
|
|
|
|
extra_config+=("--with-host-libstdcxx=${host_libstdcxx_flags[*]}")
|
|
|
|
fi
|
|
|
|
|
2010-04-07 16:35:22 +00:00
|
|
|
if [ "${CT_THREADS}" = "none" ]; then
|
|
|
|
extra_config+=("--disable-threads")
|
|
|
|
if [ "${CT_CC_GCC_4_2_or_later}" = y ]; then
|
2010-10-08 21:58:58 +00:00
|
|
|
CT_Test "Disabling libgomp for no-thread gcc>=4.2" "${CT_CC_GCC_LIBGOMP}" = "Y"
|
2010-04-07 16:35:22 +00:00
|
|
|
extra_config+=("--disable-libgomp")
|
|
|
|
fi
|
|
|
|
else
|
2010-07-11 19:36:20 +00:00
|
|
|
if [ "${CT_THREADS}" = "win32" ]; then
|
|
|
|
extra_config+=("--enable-threads=win32")
|
|
|
|
extra_config+=("--disable-win32-registry")
|
|
|
|
else
|
|
|
|
extra_config+=("--enable-threads=posix")
|
|
|
|
fi
|
2010-04-07 16:35:22 +00:00
|
|
|
fi
|
|
|
|
|
2010-05-24 14:34:55 +00:00
|
|
|
if [ "${CT_CC_GCC_ENABLE_TARGET_OPTSPACE}" = "y" ]; then
|
|
|
|
extra_config+=("--enable-target-optspace")
|
|
|
|
fi
|
2010-06-17 19:26:23 +00:00
|
|
|
if [ "${CT_CC_GCC_DISABLE_PCH}" = "y" ]; then
|
|
|
|
extra_config+=("--disable-libstdcxx-pch")
|
|
|
|
fi
|
2010-05-24 14:34:55 +00:00
|
|
|
|
2010-10-09 20:49:28 +00:00
|
|
|
case "${CT_CC_GCC_LDBL_128}" in
|
2010-10-20 13:25:38 +00:00
|
|
|
y) extra_config+=("--with-long-double-128");;
|
|
|
|
m) ;;
|
2010-10-09 20:49:28 +00:00
|
|
|
"") extra_config+=("--without-long-double-128");;
|
|
|
|
esac
|
|
|
|
|
2011-06-27 11:52:15 +00:00
|
|
|
if [ "${CT_CC_GCC_BUILD_ID}" = "y" ]; then
|
|
|
|
extra_config+=( --enable-linker-build-id )
|
|
|
|
fi
|
|
|
|
|
2011-06-27 13:15:00 +00:00
|
|
|
case "${CT_CC_GCC_LNK_HASH_STYLE}" in
|
|
|
|
"") ;;
|
|
|
|
*) extra_config+=( "--with-linker-hash-style=${CT_CC_GCC_LNK_HASH_STYLE}" );;
|
|
|
|
esac
|
|
|
|
|
2011-01-28 17:53:37 +00:00
|
|
|
if [ "${CT_CC_GCC_ENABLE_PLUGINS}" = "y" ]; then
|
|
|
|
extra_config+=( --enable-plugin )
|
|
|
|
fi
|
|
|
|
if [ "${CT_CC_GCC_GOLD}" = "y" ]; then
|
2010-12-29 16:58:35 +00:00
|
|
|
extra_config+=( --enable-gold )
|
|
|
|
fi
|
|
|
|
|
2011-07-03 20:32:36 +00:00
|
|
|
case "${CT_ARCH}" in
|
|
|
|
mips)
|
|
|
|
case "${CT_CC_GCC_mips_llsc}" in
|
|
|
|
y) extra_config+=( --with-llsc );;
|
|
|
|
m) ;;
|
|
|
|
*) extra_config+=( --without-llsc );;
|
|
|
|
esac
|
|
|
|
case "${CT_CC_GCC_mips_synci}" in
|
|
|
|
y) extra_config+=( --with-synci );;
|
|
|
|
m) ;;
|
|
|
|
*) extra_config+=( --without-synci );;
|
|
|
|
esac
|
|
|
|
if [ "${CT_CC_GCC_mips_plt}" ]; then
|
|
|
|
extra_config+=( --with-mips-plt )
|
|
|
|
fi
|
|
|
|
;; # ARCH is mips
|
|
|
|
esac
|
|
|
|
|
2011-11-17 10:00:28 +00:00
|
|
|
[ "${CT_TOOLCHAIN_ENABLE_NLS}" != "y" ] && extra_config+=("--disable-nls")
|
|
|
|
|
2009-08-19 17:44:42 +00:00
|
|
|
CT_DoLog DEBUG "Extra config passed: '${extra_config[*]}'"
|
2007-02-24 11:00:05 +00:00
|
|
|
|
2011-03-20 00:17:27 +00:00
|
|
|
CT_DoExecLog CFG \
|
2009-01-04 14:39:39 +00:00
|
|
|
CC_FOR_BUILD="${CT_BUILD}-gcc" \
|
|
|
|
CFLAGS="${CT_CFLAGS_FOR_HOST}" \
|
2010-12-09 17:55:42 +00:00
|
|
|
LDFLAGS="${final_LDFLAGS[*]}" \
|
2009-01-04 14:39:39 +00:00
|
|
|
CFLAGS_FOR_TARGET="${CT_TARGET_CFLAGS}" \
|
|
|
|
CXXFLAGS_FOR_TARGET="${CT_TARGET_CFLAGS}" \
|
|
|
|
LDFLAGS_FOR_TARGET="${CT_TARGET_LDFLAGS}" \
|
2009-05-25 20:09:17 +00:00
|
|
|
"${CT_SRC_DIR}/gcc-${CT_CC_VERSION}/configure" \
|
2009-01-04 14:39:39 +00:00
|
|
|
--build=${CT_BUILD} \
|
|
|
|
--host=${CT_HOST} \
|
|
|
|
--target=${CT_TARGET} \
|
|
|
|
--prefix="${CT_PREFIX_DIR}" \
|
|
|
|
${CC_SYSROOT_ARG} \
|
2009-08-19 17:44:42 +00:00
|
|
|
"${extra_config[@]}" \
|
2009-01-04 14:39:39 +00:00
|
|
|
--with-local-prefix="${CT_SYSROOT_DIR}" \
|
|
|
|
--enable-c99 \
|
|
|
|
--enable-long-long \
|
2011-05-18 21:00:46 +00:00
|
|
|
"${CT_CC_EXTRA_CONFIG_ARRAY[@]}"
|
2007-02-24 11:00:05 +00:00
|
|
|
|
2007-05-24 17:49:24 +00:00
|
|
|
if [ "${CT_CANADIAN}" = "y" ]; then
|
2007-02-24 11:00:05 +00:00
|
|
|
CT_DoLog EXTRA "Building libiberty"
|
2011-01-22 21:35:43 +00:00
|
|
|
CT_DoExecLog ALL make ${JOBSFLAGS} all-build-libiberty
|
2007-02-24 11:00:05 +00:00
|
|
|
fi
|
|
|
|
|
2007-05-01 09:03:40 +00:00
|
|
|
CT_DoLog EXTRA "Building final compiler"
|
2011-01-22 21:35:43 +00:00
|
|
|
CT_DoExecLog ALL make ${JOBSFLAGS} all
|
2007-02-24 11:00:05 +00:00
|
|
|
|
2007-05-01 09:03:40 +00:00
|
|
|
CT_DoLog EXTRA "Installing final compiler"
|
2011-09-14 10:59:17 +00:00
|
|
|
CT_DoExecLog ALL make ${JOBSFLAGS} install
|
2007-02-24 11:00:05 +00:00
|
|
|
|
2011-11-15 21:06:21 +00:00
|
|
|
if [ "${CT_BUILD_MANUALS}" = "y" ]; then
|
|
|
|
CT_DoLog EXTRA "Building the GCC manuals"
|
|
|
|
CT_DoExecLog ALL make ${JOBSFLAGS} pdf html
|
|
|
|
CT_DoLog EXTRA "Installing the GCC manuals"
|
|
|
|
CT_DoExecLog ALL make install-{pdf,html}-gcc
|
|
|
|
fi
|
|
|
|
|
2007-07-08 17:44:59 +00:00
|
|
|
# Create a symlink ${CT_TARGET}-cc to ${CT_TARGET}-gcc to always be able
|
|
|
|
# to call the C compiler with the same, somewhat canonical name.
|
2010-04-20 09:39:13 +00:00
|
|
|
# check whether compiler has an extension
|
2010-07-19 21:16:02 +00:00
|
|
|
file="$( ls -1 "${CT_PREFIX_DIR}/bin/${CT_TARGET}-gcc."* 2>/dev/null || true )"
|
2010-04-20 09:39:13 +00:00
|
|
|
[ -z "${file}" ] || ext=".${file##*.}"
|
2011-07-12 21:52:24 +00:00
|
|
|
CT_DoExecLog ALL ln -sfv "${CT_TARGET}-gcc${ext}" "${CT_PREFIX_DIR}/bin/${CT_TARGET}-cc${ext}"
|
2007-07-08 17:44:59 +00:00
|
|
|
|
2007-02-24 11:00:05 +00:00
|
|
|
CT_EndStep
|
|
|
|
}
|