summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/gcc/gcc-common.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-common.inc')
-rw-r--r--meta/recipes-devtools/gcc/gcc-common.inc99
1 files changed, 99 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-common.inc b/meta/recipes-devtools/gcc/gcc-common.inc
new file mode 100644
index 0000000000..5696671e1b
--- /dev/null
+++ b/meta/recipes-devtools/gcc/gcc-common.inc
@@ -0,0 +1,99 @@
1SUMMARY = "GNU cc and gcc C compilers"
2HOMEPAGE = "http://www.gnu.org/software/gcc/"
3SECTION = "devel"
4LICENSE = "GPL"
5
6NATIVEDEPS = ""
7
8inherit autotools gettext texinfo ptest
9
10BPN = "gcc"
11
12def get_gcc_float_setting(bb, d):
13 if d.getVar('ARMPKGSFX_EABI', True) == "hf" and d.getVar('TRANSLATED_TARGET_ARCH', True) == "arm":
14 return "--with-float=hard"
15 if d.getVar('TARGET_FPU', True) in [ 'soft' ]:
16 return "--with-float=soft"
17 if d.getVar('TARGET_FPU', True) in [ 'ppc-efd' ]:
18 return "--enable-e500_double"
19 return ""
20
21get_gcc_float_setting[vardepvalue] = "${@get_gcc_float_setting(bb, d)}"
22
23def get_gcc_mips_plt_setting(bb, d):
24 if d.getVar('TRANSLATED_TARGET_ARCH', True) in [ 'mips', 'mipsel' ] and bb.utils.contains('DISTRO_FEATURES', 'mplt', True, False, d):
25 return "--with-mips-plt"
26 return ""
27
28def get_long_double_setting(bb, d):
29 if d.getVar('TRANSLATED_TARGET_ARCH', True) in [ 'powerpc', 'powerpc64' ] and d.getVar('TCLIBC', True) in [ 'uclibc', 'glibc' ]:
30 return "--with-long-double-128"
31 return ""
32
33def get_gcc_multiarch_setting(bb, d):
34 target_arch = d.getVar('TRANSLATED_TARGET_ARCH', True)
35 multiarch_options = {
36 "i586": "--enable-targets=all",
37 "powerpc": "--enable-targets=powerpc64",
38 "mips": "--enable-targets=all",
39 "sparc": "--enable-targets=all",
40 }
41
42 if bb.utils.contains('DISTRO_FEATURES', 'multiarch', True, False, d):
43 if target_arch in multiarch_options :
44 return multiarch_options[target_arch]
45 return ""
46
47# this is used by the multilib setup of gcc
48def get_tune_parameters(tune, d):
49 availtunes = d.getVar('AVAILTUNES', True)
50 if tune not in availtunes.split():
51 bb.error('The tune: %s is not one of the available tunes: %s', tune or None, availtunes)
52
53 localdata = bb.data.createCopy(d)
54 override = ':tune-' + tune
55 localdata.setVar('OVERRIDES', localdata.getVar('OVERRIDES', False) + override)
56 bb.data.update_data(localdata)
57
58 retdict = {}
59 retdict['tune'] = tune
60 retdict['ccargs'] = localdata.getVar('TUNE_CCARGS', True)
61 retdict['features'] = localdata.getVar('TUNE_FEATURES', True)
62 # BASELIB is used by the multilib code to change library paths
63 retdict['baselib'] = localdata.getVar('BASE_LIB', True) or localdata.getVar('BASELIB', True)
64 retdict['arch'] = localdata.getVar('TUNE_ARCH', True)
65 retdict['abiextension'] = localdata.getVar('ABIEXTENSION', True)
66 retdict['target_fpu'] = localdata.getVar('TARGET_FPU', True)
67 retdict['pkgarch'] = localdata.getVar('TUNE_PKGARCH', True)
68 retdict['package_extra_archs'] = localdata.getVar('PACKAGE_EXTRA_ARCHS', True)
69 return retdict
70
71get_tune_parameters[vardepsexclude] = "AVAILTUNES TUNE_CCARGS OVERRIDES TUNE_FEATURES BASE_LIB BASELIB TUNE_ARCH ABIEXTENSION TARGET_FPU TUNE_PKGARCH PACKAGE_EXTRA_ARCHS"
72
73DEBIANNAME_${MLPREFIX}libgcc = "libgcc1"
74
75MIRRORS =+ "\
76${GNU_MIRROR}/gcc ftp://gcc.gnu.org/pub/gcc/releases/ \n \
77${GNU_MIRROR}/gcc ftp://gd.tuwien.ac.at/gnu/gcc/ \n \
78${GNU_MIRROR}/gcc http://mirrors.rcn.net/pub/sourceware/gcc/releases/ \n \
79${GNU_MIRROR}/gcc http://gcc.get-software.com/releases/ \n \
80${GNU_MIRROR}/gcc http://gcc.get-software.com/releases/ \n \
81"
82#
83# Set some default values
84#
85gcclibdir = "${libdir}/gcc"
86BINV = "${PV}"
87#S = "${WORKDIR}/gcc-${PV}"
88S = "${TMPDIR}/work-shared/gcc-${PV}-${PR}/gcc-${PV}"
89B = "${WORKDIR}/gcc-${PV}/build.${HOST_SYS}.${TARGET_SYS}"
90
91target_includedir ?= "${includedir}"
92target_libdir ?= "${libdir}"
93target_base_libdir ?= "${base_libdir}"
94target_prefix ?= "${prefix}"
95
96# We need to ensure that for the shared work directory, the do_patch signatures match
97# The real WORKDIR location isn't a dependency for the shared workdir.
98src_patches[vardepsexclude] = "WORKDIR"
99should_apply[vardepsexclude] += "PN"