2024-09-09 08:57:42 +00:00
|
|
|
SUMMARY = "GNU cc and gcc C compilers"
|
2024-09-09 08:52:07 +00:00
|
|
|
HOMEPAGE = "http://www.gnu.org/software/gcc/"
|
|
|
|
SECTION = "devel"
|
|
|
|
LICENSE = "GPL"
|
|
|
|
|
|
|
|
NATIVEDEPS = ""
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
inherit autotools gettext texinfo
|
2024-09-09 08:52:07 +00:00
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
BPN = "gcc"
|
2024-09-09 08:52:07 +00:00
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
def get_gcc_float_setting(bb, d):
|
|
|
|
if d.getVar('ARMPKGSFX_EABI', True) == "hf" and d.getVar('TRANSLATED_TARGET_ARCH', True) == "arm":
|
|
|
|
return "--with-float=hard"
|
|
|
|
if d.getVar('TARGET_FPU', True) in [ 'soft' ]:
|
2024-09-09 08:52:07 +00:00
|
|
|
return "--with-float=soft"
|
2024-09-09 08:57:42 +00:00
|
|
|
if d.getVar('TARGET_FPU', True) in [ 'ppc-efd' ]:
|
2024-09-09 08:52:07 +00:00
|
|
|
return "--enable-e500_double"
|
|
|
|
return ""
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
get_gcc_float_setting[vardepvalue] = "${@get_gcc_float_setting(bb, d)}"
|
|
|
|
|
2024-09-09 08:52:07 +00:00
|
|
|
def get_gcc_mips_plt_setting(bb, d):
|
2024-09-09 08:57:42 +00:00
|
|
|
if d.getVar('TRANSLATED_TARGET_ARCH', True) in [ 'mips', 'mipsel' ] and bb.utils.contains('DISTRO_FEATURES', 'mplt', True, False, d):
|
2024-09-09 08:52:07 +00:00
|
|
|
return "--with-mips-plt"
|
|
|
|
return ""
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
def get_long_double_setting(bb, d):
|
|
|
|
if d.getVar('TRANSLATED_TARGET_ARCH', True) in [ 'powerpc', 'powerpc64' ] and d.getVar('TCLIBC', True) in [ 'uclibc', 'glibc' ]:
|
|
|
|
return "--with-long-double-128"
|
|
|
|
return ""
|
|
|
|
|
2024-09-09 08:52:07 +00:00
|
|
|
def get_gcc_multiarch_setting(bb, d):
|
2024-09-09 08:57:42 +00:00
|
|
|
target_arch = d.getVar('TRANSLATED_TARGET_ARCH', True)
|
2024-09-09 08:52:07 +00:00
|
|
|
multiarch_options = {
|
|
|
|
"i586": "--enable-targets=all",
|
|
|
|
"powerpc": "--enable-targets=powerpc64",
|
2024-09-09 08:57:42 +00:00
|
|
|
"mips": "--enable-targets=all",
|
2024-09-09 08:52:07 +00:00
|
|
|
"sparc": "--enable-targets=all",
|
|
|
|
}
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
if bb.utils.contains('DISTRO_FEATURES', 'multiarch', True, False, d):
|
2024-09-09 08:52:07 +00:00
|
|
|
if target_arch in multiarch_options :
|
|
|
|
return multiarch_options[target_arch]
|
|
|
|
return ""
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
# this is used by the multilib setup of gcc
|
|
|
|
def get_tune_parameters(tune, d):
|
|
|
|
availtunes = d.getVar('AVAILTUNES', True)
|
|
|
|
if tune not in availtunes.split():
|
|
|
|
bb.error('The tune: %s is not one of the available tunes: %s', tune or None, availtunes)
|
|
|
|
|
|
|
|
localdata = bb.data.createCopy(d)
|
|
|
|
override = ':tune-' + tune
|
|
|
|
localdata.setVar('OVERRIDES', localdata.getVar('OVERRIDES', False) + override)
|
|
|
|
bb.data.update_data(localdata)
|
|
|
|
|
|
|
|
retdict = {}
|
|
|
|
retdict['tune'] = tune
|
|
|
|
retdict['ccargs'] = localdata.getVar('TUNE_CCARGS', True)
|
|
|
|
retdict['features'] = localdata.getVar('TUNE_FEATURES', True)
|
|
|
|
# BASELIB is used by the multilib code to change library paths
|
|
|
|
retdict['baselib'] = localdata.getVar('BASE_LIB', True) or localdata.getVar('BASELIB', True)
|
|
|
|
retdict['arch'] = localdata.getVar('TUNE_ARCH', True)
|
|
|
|
retdict['abiextension'] = localdata.getVar('ABIEXTENSION', True)
|
|
|
|
retdict['target_fpu'] = localdata.getVar('TARGET_FPU', True)
|
|
|
|
retdict['pkgarch'] = localdata.getVar('TUNE_PKGARCH', True)
|
|
|
|
retdict['package_extra_archs'] = localdata.getVar('PACKAGE_EXTRA_ARCHS', True)
|
|
|
|
return retdict
|
|
|
|
|
|
|
|
get_tune_parameters[vardepsexclude] = "AVAILTUNES TUNE_CCARGS OVERRIDES TUNE_FEATURES BASE_LIB BASELIB TUNE_ARCH ABIEXTENSION TARGET_FPU TUNE_PKGARCH PACKAGE_EXTRA_ARCHS"
|
|
|
|
|
|
|
|
DEBIANNAME_${MLPREFIX}libgcc = "libgcc1"
|
2024-09-09 08:52:07 +00:00
|
|
|
|
|
|
|
MIRRORS =+ "\
|
2024-09-09 08:57:42 +00:00
|
|
|
${GNU_MIRROR}/gcc ftp://gcc.gnu.org/pub/gcc/releases/ \n \
|
|
|
|
${GNU_MIRROR}/gcc ftp://gd.tuwien.ac.at/gnu/gcc/ \n \
|
|
|
|
${GNU_MIRROR}/gcc http://mirrors.rcn.net/pub/sourceware/gcc/releases/ \n \
|
|
|
|
${GNU_MIRROR}/gcc http://gcc.get-software.com/releases/ \n \
|
|
|
|
${GNU_MIRROR}/gcc http://gcc.get-software.com/releases/ \n \
|
2024-09-09 08:52:07 +00:00
|
|
|
"
|
|
|
|
#
|
|
|
|
# Set some default values
|
|
|
|
#
|
|
|
|
gcclibdir = "${libdir}/gcc"
|
|
|
|
BINV = "${PV}"
|
|
|
|
#S = "${WORKDIR}/gcc-${PV}"
|
|
|
|
S = "${TMPDIR}/work-shared/gcc-${PV}-${PR}/gcc-${PV}"
|
|
|
|
B = "${WORKDIR}/gcc-${PV}/build.${HOST_SYS}.${TARGET_SYS}"
|
|
|
|
|
|
|
|
target_includedir ?= "${includedir}"
|
|
|
|
target_libdir ?= "${libdir}"
|
|
|
|
target_base_libdir ?= "${base_libdir}"
|
|
|
|
target_prefix ?= "${prefix}"
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
# We need to ensure that for the shared work directory, the do_patch signatures match
|
2024-09-09 08:52:07 +00:00
|
|
|
# The real WORKDIR location isn't a dependency for the shared workdir.
|
|
|
|
src_patches[vardepsexclude] = "WORKDIR"
|
2024-09-09 08:57:42 +00:00
|
|
|
should_apply[vardepsexclude] += "PN"
|