diff options
| author | Richard Purdie <richard@openedhand.com> | 2008-03-18 10:41:39 +0000 |
|---|---|---|
| committer | Richard Purdie <richard@openedhand.com> | 2008-03-18 10:41:39 +0000 |
| commit | 1255ee64ee58fb5f0acd0bdbf4f0a54afd5ceeaf (patch) | |
| tree | 293d34ede70b906b04967ac077e32a8fee4e855b /meta/packages/gcc/gcc-common.inc | |
| parent | 402c7dcb2790bd51de9436befe8c273e538be441 (diff) | |
| download | poky-1255ee64ee58fb5f0acd0bdbf4f0a54afd5ceeaf.tar.gz | |
gcc: Merge in the major cleanup I made in OE.dev
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4038 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/gcc/gcc-common.inc')
| -rw-r--r-- | meta/packages/gcc/gcc-common.inc | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/meta/packages/gcc/gcc-common.inc b/meta/packages/gcc/gcc-common.inc new file mode 100644 index 0000000000..1097614969 --- /dev/null +++ b/meta/packages/gcc/gcc-common.inc | |||
| @@ -0,0 +1,35 @@ | |||
| 1 | DESCRIPTION = "The GNU cc and gcc C compilers." | ||
| 2 | HOMEPAGE = "http://www.gnu.org/software/gcc/" | ||
| 3 | SECTION = "devel" | ||
| 4 | LICENSE = "GPL" | ||
| 5 | |||
| 6 | inherit autotools gettext | ||
| 7 | |||
| 8 | FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/gcc-${PV}" | ||
| 9 | |||
| 10 | def get_gcc_fpu_setting(bb, d): | ||
| 11 | if bb.data.getVar('TARGET_FPU', d, 1) in [ 'soft' ]: | ||
| 12 | return "--with-float=soft" | ||
| 13 | return "" | ||
| 14 | |||
| 15 | # We really need HOST_SYS here for some packages and TARGET_SYS for others. | ||
| 16 | # For now, libgcc is most important so we fix for that - RP. | ||
| 17 | SHLIBSDIR = "${STAGING_DIR}/${TARGET_SYS}/shlibs" | ||
| 18 | |||
| 19 | DEBIANNAME_libgcc = "libgcc1" | ||
| 20 | |||
| 21 | MIRRORS_prepend () { | ||
| 22 | ${GNU_MIRROR}/gcc/releases/ ftp://gcc.gnu.org/pub/gcc/releases/ | ||
| 23 | ${GNU_MIRROR}/gcc/ http://mirrors.rcn.net/pub/sourceware/gcc/releases/ | ||
| 24 | ${GNU_MIRROR}/gcc/releases/ http://gcc.get-software.com/releases/ | ||
| 25 | ${GNU_MIRROR}/gcc/ http://gcc.get-software.com/releases/ | ||
| 26 | } | ||
| 27 | |||
| 28 | # | ||
| 29 | # Set some default values | ||
| 30 | # | ||
| 31 | gcclibdir = "${libdir}/gcc" | ||
| 32 | BINV = "${PV}" | ||
| 33 | S = "${WORKDIR}/gcc-${PV}" | ||
| 34 | B = "${S}/build.${HOST_SYS}.${TARGET_SYS}" | ||
| 35 | |||
