* [toolchain-layer][PATCH 1/3] gcc-4.5: Match with OE-Core on building procedure for libgcc and gcc-runtime
@ 2012-04-30 20:51 Khem Raj
2012-04-30 20:51 ` [toolchain-layer][PATCH 2/3] gcc-crosssdk-intermediate_4.5.bb: with-headers has been moved from common include Khem Raj
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Khem Raj @ 2012-04-30 20:51 UTC (permalink / raw)
To: openembedded-devel
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
toolchain-layer/recipes-devtools/gcc/libgcc_4.5.bb | 47 +++++++++++++++-----
1 files changed, 36 insertions(+), 11 deletions(-)
diff --git a/toolchain-layer/recipes-devtools/gcc/libgcc_4.5.bb b/toolchain-layer/recipes-devtools/gcc/libgcc_4.5.bb
index 1579c8b..ecef5e7 100644
--- a/toolchain-layer/recipes-devtools/gcc/libgcc_4.5.bb
+++ b/toolchain-layer/recipes-devtools/gcc/libgcc_4.5.bb
@@ -1,33 +1,46 @@
require recipes-devtools/gcc/gcc-${PV}.inc
-
INHIBIT_DEFAULT_DEPS = "1"
+
DEPENDS = "virtual/${TARGET_PREFIX}gcc virtual/${TARGET_PREFIX}g++"
PACKAGES = "\
${PN} \
${PN}-dev \
+ ${PN}-dbg \
+ libgcov-dev \
"
FILES_${PN} = "${base_libdir}/libgcc*.so.*"
FILES_${PN}-dev = " \
${base_libdir}/libgcc*.so \
${libdir}/${TARGET_SYS}/${BINV}/crt* \
- ${libdir}/${TARGET_SYS}/${BINV}/libgcov.a \
${libdir}/${TARGET_SYS}/${BINV}/libgcc*"
+FILES_libgcov-dev = " \
+ ${libdir}/${TARGET_SYS}/${BINV}/libgcov.a"
-do_fetch[noexec] = "1"
-do_unpack[noexec] = "1"
-do_patch[noexec] = "1"
-do_configure[noexec] = "1"
-do_compile[noexec] = "1"
+FILES_${PN}-dbg += "${base_libdir}/.debug/"
-do_install () {
+do_configure () {
target=`echo ${MULTIMACH_TARGET_SYS} | sed -e s#-nativesdk##`
-
- # Install libgcc from our gcc-cross saved data
install -d ${D}${base_libdir} ${D}${libdir}
- cp -fpPR ${STAGING_INCDIR_NATIVE}/gcc-build-internal-$target/* ${D}
+ cp -fpPR ${STAGING_INCDIR_NATIVE}/gcc-build-internal-$target/* ${B}
+ mkdir -p ${B}/${PN}
+ cd ${B}/${PN}
+ chmod a+x ${S}/${PN}/configure
+ ${S}/${PN}/configure ${CONFIGUREOPTS} ${EXTRA_OECONF}
+}
+
+do_compile () {
+ target=`echo ${TARGET_SYS} | sed -e s#-nativesdk##`
+ cd ${B}/${PN}
+ oe_runmake MULTIBUILDTOP=${B}/$target/${PN}/
+}
+
+do_install () {
+ target=`echo ${TARGET_SYS} | sed -e s#-nativesdk##`
+ cd ${B}/${PN}
+ oe_runmake 'DESTDIR=${D}' MULTIBUILDTOP=${B}/$target/${PN}/ install
# Move libgcc_s into /lib
mkdir -p ${D}${base_libdir}
@@ -36,7 +49,19 @@ do_install () {
else
mv ${D}${libdir}/libgcc* ${D}${base_libdir} || true
fi
+
+ # install the runtime in /usr/lib/ not in /usr/lib/gcc on target
+ # so that cross-gcc can find it in the sysroot
+
+ mv ${D}${libdir}/gcc/* ${D}${libdir}
+ rm -rf ${D}${libdir}/gcc/
}
+do_package_write_ipk[depends] += "virtual/${MLPREFIX}libc:do_package"
+do_package_write_deb[depends] += "virtual/${MLPREFIX}libc:do_package"
+do_package_write_rpm[depends] += "virtual/${MLPREFIX}libc:do_package"
+
BBCLASSEXTEND = "nativesdk"
+INSANE_SKIP_libgcc-dev = "staticdev"
+INSANE_SKIP_libgcov-dev = "staticdev"
--
1.7.5.4
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [toolchain-layer][PATCH 2/3] gcc-crosssdk-intermediate_4.5.bb: with-headers has been moved from common include
2012-04-30 20:51 [toolchain-layer][PATCH 1/3] gcc-4.5: Match with OE-Core on building procedure for libgcc and gcc-runtime Khem Raj
@ 2012-04-30 20:51 ` Khem Raj
2012-05-02 7:15 ` Denys Dmytriyenko
2012-04-30 20:51 ` [toolchain-layer][PATCH 3/3] libgcc-4.5: Fix nativesdk build problem Khem Raj
2012-05-02 7:14 ` [toolchain-layer][PATCH 1/3] gcc-4.5: Match with OE-Core on building procedure for libgcc and gcc-runtime Denys Dmytriyenko
2 siblings, 1 reply; 6+ messages in thread
From: Khem Raj @ 2012-04-30 20:51 UTC (permalink / raw)
To: openembedded-devel
To accomodate gcc 4.7 which needed a different option
than --with-header this option setting has been moved
into version specific recipes
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
.../gcc/gcc-crosssdk-intermediate_4.5.bb | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/toolchain-layer/recipes-devtools/gcc/gcc-crosssdk-intermediate_4.5.bb b/toolchain-layer/recipes-devtools/gcc/gcc-crosssdk-intermediate_4.5.bb
index 971f3ba..61a0dfb 100644
--- a/toolchain-layer/recipes-devtools/gcc/gcc-crosssdk-intermediate_4.5.bb
+++ b/toolchain-layer/recipes-devtools/gcc/gcc-crosssdk-intermediate_4.5.bb
@@ -1,3 +1,3 @@
require recipes-devtools/gcc/gcc-cross-intermediate_${PV}.bb
require recipes-devtools/gcc/gcc-crosssdk-intermediate.inc
-
+EXTRA_OECONF += " --with-headers=${STAGING_DIR_TCBOOTSTRAP}${SYSTEMHEADERS} "
--
1.7.5.4
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [toolchain-layer][PATCH 3/3] libgcc-4.5: Fix nativesdk build problem
2012-04-30 20:51 [toolchain-layer][PATCH 1/3] gcc-4.5: Match with OE-Core on building procedure for libgcc and gcc-runtime Khem Raj
2012-04-30 20:51 ` [toolchain-layer][PATCH 2/3] gcc-crosssdk-intermediate_4.5.bb: with-headers has been moved from common include Khem Raj
@ 2012-04-30 20:51 ` Khem Raj
2012-05-02 7:15 ` Denys Dmytriyenko
2012-05-02 7:14 ` [toolchain-layer][PATCH 1/3] gcc-4.5: Match with OE-Core on building procedure for libgcc and gcc-runtime Denys Dmytriyenko
2 siblings, 1 reply; 6+ messages in thread
From: Khem Raj @ 2012-04-30 20:51 UTC (permalink / raw)
To: openembedded-devel
We need to use BPN instead of PN so we
access libgcc and not libgcc-nativesdk
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
toolchain-layer/recipes-devtools/gcc/libgcc_4.5.bb | 32 +++++++++++--------
1 files changed, 18 insertions(+), 14 deletions(-)
diff --git a/toolchain-layer/recipes-devtools/gcc/libgcc_4.5.bb b/toolchain-layer/recipes-devtools/gcc/libgcc_4.5.bb
index ecef5e7..3f63931 100644
--- a/toolchain-layer/recipes-devtools/gcc/libgcc_4.5.bb
+++ b/toolchain-layer/recipes-devtools/gcc/libgcc_4.5.bb
@@ -4,11 +4,14 @@ INHIBIT_DEFAULT_DEPS = "1"
DEPENDS = "virtual/${TARGET_PREFIX}gcc virtual/${TARGET_PREFIX}g++"
+PKGSUFFIX = ""
+PKGSUFFIX_virtclass-nativesdk = "-nativesdk"
+
PACKAGES = "\
${PN} \
${PN}-dev \
${PN}-dbg \
- libgcov-dev \
+ libgcov${PKGSUFFIX}-dev \
"
FILES_${PN} = "${base_libdir}/libgcc*.so.*"
@@ -16,31 +19,31 @@ FILES_${PN}-dev = " \
${base_libdir}/libgcc*.so \
${libdir}/${TARGET_SYS}/${BINV}/crt* \
${libdir}/${TARGET_SYS}/${BINV}/libgcc*"
-FILES_libgcov-dev = " \
- ${libdir}/${TARGET_SYS}/${BINV}/libgcov.a"
-
+FILES_libgcov${PKGSUFFIX}-dev = " \
+ ${libdir}/${TARGET_SYS}/${BINV}/libgcov.a \
+ "
FILES_${PN}-dbg += "${base_libdir}/.debug/"
do_configure () {
target=`echo ${MULTIMACH_TARGET_SYS} | sed -e s#-nativesdk##`
install -d ${D}${base_libdir} ${D}${libdir}
cp -fpPR ${STAGING_INCDIR_NATIVE}/gcc-build-internal-$target/* ${B}
- mkdir -p ${B}/${PN}
- cd ${B}/${PN}
- chmod a+x ${S}/${PN}/configure
- ${S}/${PN}/configure ${CONFIGUREOPTS} ${EXTRA_OECONF}
+ mkdir -p ${B}/${BPN}
+ cd ${B}/${BPN}
+ chmod a+x ${S}/${BPN}/configure
+ ${S}/${BPN}/configure ${CONFIGUREOPTS} ${EXTRA_OECONF}
}
do_compile () {
target=`echo ${TARGET_SYS} | sed -e s#-nativesdk##`
- cd ${B}/${PN}
- oe_runmake MULTIBUILDTOP=${B}/$target/${PN}/
+ cd ${B}/${BPN}
+ oe_runmake MULTIBUILDTOP=${B}/$target/${BPN}/
}
do_install () {
target=`echo ${TARGET_SYS} | sed -e s#-nativesdk##`
- cd ${B}/${PN}
- oe_runmake 'DESTDIR=${D}' MULTIBUILDTOP=${B}/$target/${PN}/ install
+ cd ${B}/${BPN}
+ oe_runmake 'DESTDIR=${D}' MULTIBUILDTOP=${B}/$target/${BPN}/ install
# Move libgcc_s into /lib
mkdir -p ${D}${base_libdir}
@@ -63,5 +66,6 @@ do_package_write_rpm[depends] += "virtual/${MLPREFIX}libc:do_package"
BBCLASSEXTEND = "nativesdk"
-INSANE_SKIP_libgcc-dev = "staticdev"
-INSANE_SKIP_libgcov-dev = "staticdev"
+INSANE_SKIP_${PN}-dev = "staticdev"
+INSANE_SKIP_libgcov${PKGSUFFIX}-dev = "staticdev"
+
--
1.7.5.4
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [toolchain-layer][PATCH 1/3] gcc-4.5: Match with OE-Core on building procedure for libgcc and gcc-runtime
2012-04-30 20:51 [toolchain-layer][PATCH 1/3] gcc-4.5: Match with OE-Core on building procedure for libgcc and gcc-runtime Khem Raj
2012-04-30 20:51 ` [toolchain-layer][PATCH 2/3] gcc-crosssdk-intermediate_4.5.bb: with-headers has been moved from common include Khem Raj
2012-04-30 20:51 ` [toolchain-layer][PATCH 3/3] libgcc-4.5: Fix nativesdk build problem Khem Raj
@ 2012-05-02 7:14 ` Denys Dmytriyenko
2 siblings, 0 replies; 6+ messages in thread
From: Denys Dmytriyenko @ 2012-05-02 7:14 UTC (permalink / raw)
To: openembedded-devel
Darn it! I wasted too much time today trying to debug this recent breakage in
gcc-runtime-4.5, before seeing these patches. It was failing like this:
checking dynamic linker characteristics... configure: error: Link tests are not allowed after GCC_NO_EXECUTABLES.
Now it works again!
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Tested-by: Denys Dmytriyenko <denys@ti.com>
> ---
> toolchain-layer/recipes-devtools/gcc/libgcc_4.5.bb | 47 +++++++++++++++-----
> 1 files changed, 36 insertions(+), 11 deletions(-)
>
> diff --git a/toolchain-layer/recipes-devtools/gcc/libgcc_4.5.bb b/toolchain-layer/recipes-devtools/gcc/libgcc_4.5.bb
> index 1579c8b..ecef5e7 100644
> --- a/toolchain-layer/recipes-devtools/gcc/libgcc_4.5.bb
> +++ b/toolchain-layer/recipes-devtools/gcc/libgcc_4.5.bb
> @@ -1,33 +1,46 @@
> require recipes-devtools/gcc/gcc-${PV}.inc
>
> -
> INHIBIT_DEFAULT_DEPS = "1"
> +
> DEPENDS = "virtual/${TARGET_PREFIX}gcc virtual/${TARGET_PREFIX}g++"
>
> PACKAGES = "\
> ${PN} \
> ${PN}-dev \
> + ${PN}-dbg \
> + libgcov-dev \
> "
>
> FILES_${PN} = "${base_libdir}/libgcc*.so.*"
> FILES_${PN}-dev = " \
> ${base_libdir}/libgcc*.so \
> ${libdir}/${TARGET_SYS}/${BINV}/crt* \
> - ${libdir}/${TARGET_SYS}/${BINV}/libgcov.a \
> ${libdir}/${TARGET_SYS}/${BINV}/libgcc*"
> +FILES_libgcov-dev = " \
> + ${libdir}/${TARGET_SYS}/${BINV}/libgcov.a"
>
> -do_fetch[noexec] = "1"
> -do_unpack[noexec] = "1"
> -do_patch[noexec] = "1"
> -do_configure[noexec] = "1"
> -do_compile[noexec] = "1"
> +FILES_${PN}-dbg += "${base_libdir}/.debug/"
>
> -do_install () {
> +do_configure () {
> target=`echo ${MULTIMACH_TARGET_SYS} | sed -e s#-nativesdk##`
> -
> - # Install libgcc from our gcc-cross saved data
> install -d ${D}${base_libdir} ${D}${libdir}
> - cp -fpPR ${STAGING_INCDIR_NATIVE}/gcc-build-internal-$target/* ${D}
> + cp -fpPR ${STAGING_INCDIR_NATIVE}/gcc-build-internal-$target/* ${B}
> + mkdir -p ${B}/${PN}
> + cd ${B}/${PN}
> + chmod a+x ${S}/${PN}/configure
> + ${S}/${PN}/configure ${CONFIGUREOPTS} ${EXTRA_OECONF}
> +}
> +
> +do_compile () {
> + target=`echo ${TARGET_SYS} | sed -e s#-nativesdk##`
> + cd ${B}/${PN}
> + oe_runmake MULTIBUILDTOP=${B}/$target/${PN}/
> +}
> +
> +do_install () {
> + target=`echo ${TARGET_SYS} | sed -e s#-nativesdk##`
> + cd ${B}/${PN}
> + oe_runmake 'DESTDIR=${D}' MULTIBUILDTOP=${B}/$target/${PN}/ install
>
> # Move libgcc_s into /lib
> mkdir -p ${D}${base_libdir}
> @@ -36,7 +49,19 @@ do_install () {
> else
> mv ${D}${libdir}/libgcc* ${D}${base_libdir} || true
> fi
> +
> + # install the runtime in /usr/lib/ not in /usr/lib/gcc on target
> + # so that cross-gcc can find it in the sysroot
> +
> + mv ${D}${libdir}/gcc/* ${D}${libdir}
> + rm -rf ${D}${libdir}/gcc/
> }
>
> +do_package_write_ipk[depends] += "virtual/${MLPREFIX}libc:do_package"
> +do_package_write_deb[depends] += "virtual/${MLPREFIX}libc:do_package"
> +do_package_write_rpm[depends] += "virtual/${MLPREFIX}libc:do_package"
> +
> BBCLASSEXTEND = "nativesdk"
>
> +INSANE_SKIP_libgcc-dev = "staticdev"
> +INSANE_SKIP_libgcov-dev = "staticdev"
> --
> 1.7.5.4
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [toolchain-layer][PATCH 2/3] gcc-crosssdk-intermediate_4.5.bb: with-headers has been moved from common include
2012-04-30 20:51 ` [toolchain-layer][PATCH 2/3] gcc-crosssdk-intermediate_4.5.bb: with-headers has been moved from common include Khem Raj
@ 2012-05-02 7:15 ` Denys Dmytriyenko
0 siblings, 0 replies; 6+ messages in thread
From: Denys Dmytriyenko @ 2012-05-02 7:15 UTC (permalink / raw)
To: openembedded-devel
On Mon, Apr 30, 2012 at 01:51:03PM -0700, Khem Raj wrote:
> To accomodate gcc 4.7 which needed a different option
> than --with-header this option setting has been moved
> into version specific recipes
>
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Tested-by: Denys Dmytriyenko <denys@ti.com>
> ---
> .../gcc/gcc-crosssdk-intermediate_4.5.bb | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/toolchain-layer/recipes-devtools/gcc/gcc-crosssdk-intermediate_4.5.bb b/toolchain-layer/recipes-devtools/gcc/gcc-crosssdk-intermediate_4.5.bb
> index 971f3ba..61a0dfb 100644
> --- a/toolchain-layer/recipes-devtools/gcc/gcc-crosssdk-intermediate_4.5.bb
> +++ b/toolchain-layer/recipes-devtools/gcc/gcc-crosssdk-intermediate_4.5.bb
> @@ -1,3 +1,3 @@
> require recipes-devtools/gcc/gcc-cross-intermediate_${PV}.bb
> require recipes-devtools/gcc/gcc-crosssdk-intermediate.inc
> -
> +EXTRA_OECONF += " --with-headers=${STAGING_DIR_TCBOOTSTRAP}${SYSTEMHEADERS} "
> --
> 1.7.5.4
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [toolchain-layer][PATCH 3/3] libgcc-4.5: Fix nativesdk build problem
2012-04-30 20:51 ` [toolchain-layer][PATCH 3/3] libgcc-4.5: Fix nativesdk build problem Khem Raj
@ 2012-05-02 7:15 ` Denys Dmytriyenko
0 siblings, 0 replies; 6+ messages in thread
From: Denys Dmytriyenko @ 2012-05-02 7:15 UTC (permalink / raw)
To: openembedded-devel
On Mon, Apr 30, 2012 at 01:51:04PM -0700, Khem Raj wrote:
> We need to use BPN instead of PN so we
> access libgcc and not libgcc-nativesdk
>
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Tested-by: Denys Dmytriyenko <denys@ti.com>
> ---
> toolchain-layer/recipes-devtools/gcc/libgcc_4.5.bb | 32 +++++++++++--------
> 1 files changed, 18 insertions(+), 14 deletions(-)
>
> diff --git a/toolchain-layer/recipes-devtools/gcc/libgcc_4.5.bb b/toolchain-layer/recipes-devtools/gcc/libgcc_4.5.bb
> index ecef5e7..3f63931 100644
> --- a/toolchain-layer/recipes-devtools/gcc/libgcc_4.5.bb
> +++ b/toolchain-layer/recipes-devtools/gcc/libgcc_4.5.bb
> @@ -4,11 +4,14 @@ INHIBIT_DEFAULT_DEPS = "1"
>
> DEPENDS = "virtual/${TARGET_PREFIX}gcc virtual/${TARGET_PREFIX}g++"
>
> +PKGSUFFIX = ""
> +PKGSUFFIX_virtclass-nativesdk = "-nativesdk"
> +
> PACKAGES = "\
> ${PN} \
> ${PN}-dev \
> ${PN}-dbg \
> - libgcov-dev \
> + libgcov${PKGSUFFIX}-dev \
> "
>
> FILES_${PN} = "${base_libdir}/libgcc*.so.*"
> @@ -16,31 +19,31 @@ FILES_${PN}-dev = " \
> ${base_libdir}/libgcc*.so \
> ${libdir}/${TARGET_SYS}/${BINV}/crt* \
> ${libdir}/${TARGET_SYS}/${BINV}/libgcc*"
> -FILES_libgcov-dev = " \
> - ${libdir}/${TARGET_SYS}/${BINV}/libgcov.a"
> -
> +FILES_libgcov${PKGSUFFIX}-dev = " \
> + ${libdir}/${TARGET_SYS}/${BINV}/libgcov.a \
> + "
> FILES_${PN}-dbg += "${base_libdir}/.debug/"
>
> do_configure () {
> target=`echo ${MULTIMACH_TARGET_SYS} | sed -e s#-nativesdk##`
> install -d ${D}${base_libdir} ${D}${libdir}
> cp -fpPR ${STAGING_INCDIR_NATIVE}/gcc-build-internal-$target/* ${B}
> - mkdir -p ${B}/${PN}
> - cd ${B}/${PN}
> - chmod a+x ${S}/${PN}/configure
> - ${S}/${PN}/configure ${CONFIGUREOPTS} ${EXTRA_OECONF}
> + mkdir -p ${B}/${BPN}
> + cd ${B}/${BPN}
> + chmod a+x ${S}/${BPN}/configure
> + ${S}/${BPN}/configure ${CONFIGUREOPTS} ${EXTRA_OECONF}
> }
>
> do_compile () {
> target=`echo ${TARGET_SYS} | sed -e s#-nativesdk##`
> - cd ${B}/${PN}
> - oe_runmake MULTIBUILDTOP=${B}/$target/${PN}/
> + cd ${B}/${BPN}
> + oe_runmake MULTIBUILDTOP=${B}/$target/${BPN}/
> }
>
> do_install () {
> target=`echo ${TARGET_SYS} | sed -e s#-nativesdk##`
> - cd ${B}/${PN}
> - oe_runmake 'DESTDIR=${D}' MULTIBUILDTOP=${B}/$target/${PN}/ install
> + cd ${B}/${BPN}
> + oe_runmake 'DESTDIR=${D}' MULTIBUILDTOP=${B}/$target/${BPN}/ install
>
> # Move libgcc_s into /lib
> mkdir -p ${D}${base_libdir}
> @@ -63,5 +66,6 @@ do_package_write_rpm[depends] += "virtual/${MLPREFIX}libc:do_package"
>
> BBCLASSEXTEND = "nativesdk"
>
> -INSANE_SKIP_libgcc-dev = "staticdev"
> -INSANE_SKIP_libgcov-dev = "staticdev"
> +INSANE_SKIP_${PN}-dev = "staticdev"
> +INSANE_SKIP_libgcov${PKGSUFFIX}-dev = "staticdev"
> +
> --
> 1.7.5.4
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2012-05-02 7:25 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-30 20:51 [toolchain-layer][PATCH 1/3] gcc-4.5: Match with OE-Core on building procedure for libgcc and gcc-runtime Khem Raj
2012-04-30 20:51 ` [toolchain-layer][PATCH 2/3] gcc-crosssdk-intermediate_4.5.bb: with-headers has been moved from common include Khem Raj
2012-05-02 7:15 ` Denys Dmytriyenko
2012-04-30 20:51 ` [toolchain-layer][PATCH 3/3] libgcc-4.5: Fix nativesdk build problem Khem Raj
2012-05-02 7:15 ` Denys Dmytriyenko
2012-05-02 7:14 ` [toolchain-layer][PATCH 1/3] gcc-4.5: Match with OE-Core on building procedure for libgcc and gcc-runtime Denys Dmytriyenko
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox