diff options
author | Enric Balletbo i Serra <eballetbo@iseebcn.com> | 2010-03-01 11:44:25 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-03-03 14:25:24 +0000 |
commit | bda8282653b87fe5a8b485f8b628ab80797579f6 (patch) | |
tree | 51a45857c1f765f08defdc4d80029e945503f1e6 /meta | |
parent | 07207b0ac5b1dcba24c36a94050389ed271cdafe (diff) | |
download | poky-bda8282653b87fe5a8b485f8b628ab80797579f6.tar.gz |
gcc: Fix fail to compile since they can't find limits.h include.
With gcc package on my build machine gcc can't find limits.h include.
$ cat x.c
$ gcc -M x.c
In file included from x.c:1:
/usr/include/limits.h:125:26: error: no include path in which to search for limits.h
This patch adds missing includes to gcc package.
Signed-off-by: Enric Balletbo i Serra <eballetbo@iseebcn.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/packages/gcc/gcc-cross_4.3.3.bb | 2 | ||||
-rw-r--r-- | meta/packages/gcc/gcc-package-target.inc | 1 | ||||
-rw-r--r-- | meta/packages/gcc/gcc_4.3.3.bb | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/meta/packages/gcc/gcc-cross_4.3.3.bb b/meta/packages/gcc/gcc-cross_4.3.3.bb index 84bee6baf3..22efffa539 100644 --- a/meta/packages/gcc/gcc-cross_4.3.3.bb +++ b/meta/packages/gcc/gcc-cross_4.3.3.bb | |||
@@ -1,4 +1,4 @@ | |||
1 | PR = "r6" | 1 | PR = "r7" |
2 | 2 | ||
3 | require gcc-${PV}.inc | 3 | require gcc-${PV}.inc |
4 | require gcc-cross4.inc | 4 | require gcc-cross4.inc |
diff --git a/meta/packages/gcc/gcc-package-target.inc b/meta/packages/gcc/gcc-package-target.inc index 989822bd6e..c1200b8bc7 100644 --- a/meta/packages/gcc/gcc-package-target.inc +++ b/meta/packages/gcc/gcc-package-target.inc | |||
@@ -21,6 +21,7 @@ FILES_${PN} = "\ | |||
21 | ${gcclibdir}/${TARGET_SYS}/${BINV}/specs \ | 21 | ${gcclibdir}/${TARGET_SYS}/${BINV}/specs \ |
22 | ${gcclibdir}/${TARGET_SYS}/${BINV}/lib* \ | 22 | ${gcclibdir}/${TARGET_SYS}/${BINV}/lib* \ |
23 | ${gcclibdir}/${TARGET_SYS}/${BINV}/include \ | 23 | ${gcclibdir}/${TARGET_SYS}/${BINV}/include \ |
24 | ${gcclibdir}/${TARGET_SYS}/${BINV}/include-fixed \ | ||
24 | " | 25 | " |
25 | FILES_${PN}-symlinks = "\ | 26 | FILES_${PN}-symlinks = "\ |
26 | ${bindir}/cc \ | 27 | ${bindir}/cc \ |
diff --git a/meta/packages/gcc/gcc_4.3.3.bb b/meta/packages/gcc/gcc_4.3.3.bb index c51d537d2d..7238aed4d7 100644 --- a/meta/packages/gcc/gcc_4.3.3.bb +++ b/meta/packages/gcc/gcc_4.3.3.bb | |||
@@ -1,4 +1,4 @@ | |||
1 | PR = "r5" | 1 | PR = "r6" |
2 | 2 | ||
3 | require gcc-${PV}.inc | 3 | require gcc-${PV}.inc |
4 | require gcc-configure-target.inc | 4 | require gcc-configure-target.inc |