diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2008-03-06 14:59:25 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2008-03-06 14:59:25 +0000 |
commit | 64e621cf18a2a5970b172187926152893ef72174 (patch) | |
tree | 2a04bc9aa28457197ed806b1c6e5370de1f628b9 | |
parent | 96c69763a6f096757987cdcab2426b359f330ffd (diff) | |
download | poky-64e621cf18a2a5970b172187926152893ef72174.tar.gz |
gcc: remove precompiled c++ headers as they take lot of space and are not required
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3969 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rw-r--r-- | meta/packages/gcc/gcc-package.inc | 3 | ||||
-rw-r--r-- | meta/packages/gcc/gcc_4.2.2.bb | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/meta/packages/gcc/gcc-package.inc b/meta/packages/gcc/gcc-package.inc index 011c4fab63..0140126ba6 100644 --- a/meta/packages/gcc/gcc-package.inc +++ b/meta/packages/gcc/gcc-package.inc | |||
@@ -126,6 +126,9 @@ do_install () { | |||
126 | ln -sf gcc cc | 126 | ln -sf gcc cc |
127 | ln -sf ${bindir}/${TARGET_SYS}-cpp ${D}${base_libdir}/cpp | 127 | ln -sf ${bindir}/${TARGET_SYS}-cpp ${D}${base_libdir}/cpp |
128 | ln -sf ${bindir}/${TARGET_SYS}-cpp ${D}${bindir}/cpp | 128 | ln -sf ${bindir}/${TARGET_SYS}-cpp ${D}${bindir}/cpp |
129 | |||
130 | # Remove precompiled c++ headers as they are really big | ||
131 | rm -rf ${D}${includedir}/c++/${BINV}/${TARGET_SYS}/bits/*.gch | ||
129 | } | 132 | } |
130 | 133 | ||
131 | # The gcc package contains symlinks that trip up insane | 134 | # The gcc package contains symlinks that trip up insane |
diff --git a/meta/packages/gcc/gcc_4.2.2.bb b/meta/packages/gcc/gcc_4.2.2.bb index 0a0e9cdd16..d322de1296 100644 --- a/meta/packages/gcc/gcc_4.2.2.bb +++ b/meta/packages/gcc/gcc_4.2.2.bb | |||
@@ -2,7 +2,7 @@ DESCRIPTION = "The GNU cc and gcc C compilers." | |||
2 | HOMEPAGE = "http://www.gnu.org/software/gcc/" | 2 | HOMEPAGE = "http://www.gnu.org/software/gcc/" |
3 | SECTION = "devel" | 3 | SECTION = "devel" |
4 | LICENSE = "GPL" | 4 | LICENSE = "GPL" |
5 | PR = "r6" | 5 | PR = "r7" |
6 | 6 | ||
7 | inherit autotools gettext | 7 | inherit autotools gettext |
8 | 8 | ||