summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/eglibc/eglibc.inc
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2012-08-15 23:16:11 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-08-21 12:15:32 +0100
commit48df3fe947c4d900aa6b66d9d8352c0d9e59ebe4 (patch)
tree46ee821cd3792d650abecf095354e754343e2dad /meta/recipes-core/eglibc/eglibc.inc
parentb0faebd1f07e1616004bd19664395932e7c2c48f (diff)
downloadpoky-48df3fe947c4d900aa6b66d9d8352c0d9e59ebe4.tar.gz
eglibc: Fix eglibc-initial and let eglibc depend on it
eglibc-initial does not need to install fake shared libs anymore so drop it. eglibc now should depend on eglibc-initial so that bootstrap sysroot gets populated properly. Drop references to gcc intermediate from glibc testing scripts. (From OE-Core rev: bddc141e7cec18744902787ab53c21bf28e71f78) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/eglibc/eglibc.inc')
-rw-r--r--meta/recipes-core/eglibc/eglibc.inc11
1 files changed, 7 insertions, 4 deletions
diff --git a/meta/recipes-core/eglibc/eglibc.inc b/meta/recipes-core/eglibc/eglibc.inc
index 51061bc7bd..02f3c7a959 100644
--- a/meta/recipes-core/eglibc/eglibc.inc
+++ b/meta/recipes-core/eglibc/eglibc.inc
@@ -2,8 +2,8 @@ require eglibc-common.inc
2require eglibc-ld.inc 2require eglibc-ld.inc
3require eglibc-testing.inc 3require eglibc-testing.inc
4 4
5STAGINGCC = "gcc-cross-intermediate" 5STAGINGCC = "gcc-cross-initial"
6STAGINGCC_virtclass-nativesdk = "gcc-crosssdk-intermediate" 6STAGINGCC_virtclass-nativesdk = "gcc-crosssdk-initial"
7PATH_prepend = "${STAGING_BINDIR_TOOLCHAIN}.${STAGINGCC}:" 7PATH_prepend = "${STAGING_BINDIR_TOOLCHAIN}.${STAGINGCC}:"
8 8
9TOOLCHAIN_OPTIONS = " --sysroot=${STAGING_DIR_TCBOOTSTRAP}" 9TOOLCHAIN_OPTIONS = " --sysroot=${STAGING_DIR_TCBOOTSTRAP}"
@@ -22,7 +22,7 @@ siteconfig_do_siteconfig_gencache_prepend = " \
22" 22"
23 23
24# nptl needs unwind support in gcc, which can't be built without glibc. 24# nptl needs unwind support in gcc, which can't be built without glibc.
25DEPENDS = "virtual/${TARGET_PREFIX}gcc-intermediate linux-libc-headers" 25DEPENDS = "virtual/${TARGET_PREFIX}gcc-initial linux-libc-headers virtual/${TARGET_PREFIX}libc-initial"
26# nptl needs libgcc but dlopens it, so our shlibs code doesn't detect this 26# nptl needs libgcc but dlopens it, so our shlibs code doesn't detect this
27#RDEPENDS_${PN} += "${@['','libgcc']['nptl' in '${GLIBC_ADDONS}']}" 27#RDEPENDS_${PN} += "${@['','libgcc']['nptl' in '${GLIBC_ADDONS}']}"
28PROVIDES = "virtual/libc virtual/${TARGET_PREFIX}libc-for-gcc" 28PROVIDES = "virtual/libc virtual/${TARGET_PREFIX}libc-for-gcc"
@@ -33,7 +33,10 @@ require eglibc-options.inc
33LEAD_SONAME = "libc.so" 33LEAD_SONAME = "libc.so"
34 34
35CACHED_CONFIGUREVARS += "ac_cv_path_KSH=${base_bindir}/bash \ 35CACHED_CONFIGUREVARS += "ac_cv_path_KSH=${base_bindir}/bash \
36 ac_cv_path_BASH_SHELL=${base_bindir}/bash" 36 ac_cv_path_BASH_SHELL=${base_bindir}/bash \
37 libc_cv_ssp=no \
38 "
39
37GLIBC_EXTRA_OECONF ?= "" 40GLIBC_EXTRA_OECONF ?= ""
38GLIBC_EXTRA_OECONF_virtclass-nativesdk = "" 41GLIBC_EXTRA_OECONF_virtclass-nativesdk = ""
39INHIBIT_DEFAULT_DEPS = "1" 42INHIBIT_DEFAULT_DEPS = "1"