From: Richard Purdie <richard.purdie@linuxfoundation.org>
To: Patches and discussions about the oe-core layer
<openembedded-core@lists.openembedded.org>
Subject: Re: [PATCHv3 3/6] gcc: Statically link in support libraries e.g. libmpfr libgmp etc.
Date: Tue, 08 Mar 2011 10:53:16 -0800 [thread overview]
Message-ID: <1299610396.602.104.camel@rex> (raw)
In-Reply-To: <AANLkTiks0VSWcW4_54mQUv17ZQvb8+CsbWcsDkA_9ZA+@mail.gmail.com>
On Mon, 2011-03-07 at 22:38 -0800, Khem Raj wrote:
> ping any opinion on this patch ?
This change looks rather hacky and I'd really like to understand more
about why this is needed and whether there is a better way we could
ensure the right flags get passed around. Can you provide more details
about whats going on with this. Obviously this change as it stands isn't
acceptable to upstream gcc and I'd like to see if we could find one that
was.
Cheers,
Richard
> On Wed, Mar 2, 2011 at 10:52 PM, Khem Raj <raj.khem@gmail.com> wrote:
> > * This is helpful to get consistent behaviour with gcc on different
> > hosts and linking the libraries in for cross gcc recipes should not
> > be increasing the binary size alarmingly
> >
> > Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > ---
> > meta/recipes-devtools/gcc/gcc-configure-common.inc | 7 +++++++
> > meta/recipes-devtools/gcc/gcc-configure-cross.inc | 10 ++++++++++
> > meta/recipes-devtools/gcc/gcc-configure-sdk.inc | 8 ++++++++
> > .../gcc/gcc-cross-canadian_4.3.3.bb | 2 +-
> > .../gcc/gcc-cross-canadian_4.5.1.bb | 2 +-
> > .../gcc/gcc-cross-initial_4.3.3.bb | 2 +-
> > .../gcc/gcc-cross-initial_4.5.1.bb | 2 +-
> > .../gcc/gcc-cross-intermediate_4.3.3.bb | 2 +-
> > .../gcc/gcc-cross-intermediate_4.5.1.bb | 2 +-
> > .../gcc/gcc-cross-kernel-3.4.4_csl-arm-2005q3.bb | 2 +-
> > meta/recipes-devtools/gcc/gcc-cross_4.3.3.bb | 2 +-
> > meta/recipes-devtools/gcc/gcc-cross_4.5.1.bb | 2 +-
> > .../gcc/gcc-cross_csl-arm-2008q1.bb | 2 +-
> > .../gcc/gcc-crosssdk-initial_4.3.3.bb | 2 +-
> > .../gcc/gcc-crosssdk-initial_4.5.1.bb | 2 +-
> > .../gcc/gcc-crosssdk-intermediate_4.3.3.bb | 2 +-
> > .../gcc/gcc-crosssdk-intermediate_4.5.1.bb | 2 +-
> > meta/recipes-devtools/gcc/gcc-crosssdk_4.5.1.bb | 2 +-
> > meta/recipes-devtools/gcc/gcc-runtime_4.3.3.bb | 2 +-
> > meta/recipes-devtools/gcc/gcc-runtime_4.5.1.bb | 2 +-
> > meta/recipes-devtools/gcc/gcc_4.3.3.bb | 2 +-
> > meta/recipes-devtools/gcc/gcc_4.5.1.bb | 2 +-
> > meta/recipes-devtools/gcc/gcc_csl-arm-2008q1.bb | 2 +-
> > meta/recipes-devtools/gcc/libgcc_4.5.1.bb | 2 +-
> > 24 files changed, 46 insertions(+), 21 deletions(-)
> >
> > diff --git a/meta/recipes-devtools/gcc/gcc-configure-common.inc b/meta/recipes-devtools/gcc/gcc-configure-common.inc
> > index 4393777..cdb69fb 100644
> > --- a/meta/recipes-devtools/gcc/gcc-configure-common.inc
> > +++ b/meta/recipes-devtools/gcc/gcc-configure-common.inc
> > @@ -85,6 +85,11 @@ do_configure () {
> > export CXXFLAGS_FOR_BUILD="${BUILD_CXXFLAGS}"
> > export LDFLAGS_FOR_BUILD="${BUILD_LDFLAGS}"
> > export ARCH_FLAGS_FOR_TARGET="${ARCH_FLAGS_FOR_TARGET}"
> > +
> > + # Make sure LDFLAGS are honored.
> > + sed -i 's/^LDFLAGS = $/LDFLAGS = @LDFLAGS@/' ${S}/Makefile.in
> > + sed -i 's/^LDFLAGS = $/LDFLAGS = @LDFLAGS@/' ${S}/Makefile.tpl
> > +
> > (cd ${S} && gnu-configize) || die "failure running gnu-configize"
> >
> > # teach gcc to find correct target includedir when checking libc ssp support
> > @@ -108,5 +113,7 @@ do_configure () {
> > echo "#endif /* ! GCC_DEFAULTS_H */" >> ${S}/gcc/defaults.h.new
> > mv ${S}/gcc/defaults.h.new ${S}/gcc/defaults.h
> > oe_runconf
> > + # make sure that no @LDFLAG@ is left in the generated Makefile
> > + sed -i "s/@LDFLAGS@//g" ${B}/Makefile
> > }
> >
> > diff --git a/meta/recipes-devtools/gcc/gcc-configure-cross.inc b/meta/recipes-devtools/gcc/gcc-configure-cross.inc
> > index 346d164..200cbe2 100644
> > --- a/meta/recipes-devtools/gcc/gcc-configure-cross.inc
> > +++ b/meta/recipes-devtools/gcc/gcc-configure-cross.inc
> > @@ -16,6 +16,16 @@ do_compile_prepend () {
> > export LD_FOR_TARGET="${TARGET_SYS}-ld"
> > export NM_FOR_TARGET="${TARGET_SYS}-nm"
> > export CC_FOR_TARGET="${CCACHE} ${TARGET_SYS}-gcc ${TARGET_CC_ARCH}"
> > + export OBJDUMP_FOR_TARGET="${TARGET_SYS}-objdump"
> > + export OBJCOPY_FOR_TARGET="${TARGET_SYS}-objcopy"
> > + export STRIP_FOR_TARGET="${TARGET_SYS}-strip"
> > + # Make sure we use GMP/MPFR statically
> > + sed -i 's/^\(HOST_GMPLIBS =\) \(.*\)$/\1 -Wl,-Bstatic \2 -Wl,-Bdynamic/' ${S}/Makefile.tpl
> > + sed -i 's/^\(HOST_GMPLIBS =\) \(.*\)$/\1 -Wl,-Bstatic \2 -Wl,-Bdynamic/' ${S}/Makefile.in
> > + sed -i 's/^\(HOST_PPLLIBS =\) \(.*\)$/\1 -Wl,-Bstatic \2 -Wl,-Bdynamic/' ${S}/Makefile.tpl
> > + sed -i 's/^\(HOST_PPLLIBS =\) \(.*\)$/\1 -Wl,-Bstatic \2 -Wl,-Bdynamic/' ${S}/Makefile.in
> > + sed -i 's/^\(HOST_LIBELFLIBS =\) \(.*\)$/\1 -Wl,-Bstatic \2 -Wl,-Bdynamic/' ${S}/Makefile.tpl
> > + sed -i 's/^\(HOST_LIBELFLIBS =\) \(.*\)$/\1 -Wl,-Bstatic \2 -Wl,-Bdynamic/' ${S}/Makefile.in
> > }
> >
> > LIBGCCS_VAR = "-lgcc_s"
> > diff --git a/meta/recipes-devtools/gcc/gcc-configure-sdk.inc b/meta/recipes-devtools/gcc/gcc-configure-sdk.inc
> > index 756e74e..3eb8992 100644
> > --- a/meta/recipes-devtools/gcc/gcc-configure-sdk.inc
> > +++ b/meta/recipes-devtools/gcc/gcc-configure-sdk.inc
> > @@ -39,6 +39,14 @@ do_configure () {
> > export CPPFLAGS_FOR_BUILD="${BUILD_CPPFLAGS}"
> > export CXXFLAGS_FOR_BUILD="${BUILD_CXXFLAGS}"
> > export LDFLAGS_FOR_BUILD="${BUILD_LDFLAGS}"
> > + export CC_FOR_TARGET="${CCACHE} ${TARGET_SYS}-gcc ${TARGET_CC_ARCH}"
> > + # Make sure we use GMP/MPFR statically
> > + sed -i 's/^\(HOST_GMPLIBS =\) \(.*\)$/\1 -Wl,-Bstatic \2 -Wl,-Bdynamic/' ${S}/Makefile.tpl
> > + sed -i 's/^\(HOST_GMPLIBS =\) \(.*\)$/\1 -Wl,-Bstatic \2 -Wl,-Bdynamic/' ${S}/Makefile.in
> > + sed -i 's/^\(HOST_PPLLIBS =\) \(.*\)$/\1 -Wl,-Bstatic \2 -Wl,-Bdynamic/' ${S}/Makefile.tpl
> > + sed -i 's/^\(HOST_PPLLIBS =\) \(.*\)$/\1 -Wl,-Bstatic \2 -Wl,-Bdynamic/' ${S}/Makefile.in
> > + sed -i 's/^\(HOST_LIBELFLIBS =\) \(.*\)$/\1 -Wl,-Bstatic \2 -Wl,-Bdynamic/' ${S}/Makefile.tpl
> > + sed -i 's/^\(HOST_LIBELFLIBS =\) \(.*\)$/\1 -Wl,-Bstatic \2 -Wl,-Bdynamic/' ${S}/Makefile.in
> > (cd ${S} && gnu-configize) || die "failure running gnu-configize"
> > oe_runconf
> > }
> > diff --git a/meta/recipes-devtools/gcc/gcc-cross-canadian_4.3.3.bb b/meta/recipes-devtools/gcc/gcc-cross-canadian_4.3.3.bb
> > index d420f80..8bf07d7 100644
> > --- a/meta/recipes-devtools/gcc/gcc-cross-canadian_4.3.3.bb
> > +++ b/meta/recipes-devtools/gcc/gcc-cross-canadian_4.3.3.bb
> > @@ -5,7 +5,7 @@ require gcc-cross-canadian.inc
> > require gcc-configure-sdk.inc
> > require gcc-package-sdk.inc
> >
> > -PR = "r20"
> > +PR = "r21"
> >
> > DEPENDS += "gmp-nativesdk mpfr-nativesdk"
> > RDEPENDS_${PN} += "mpfr-nativesdk"
> > diff --git a/meta/recipes-devtools/gcc/gcc-cross-canadian_4.5.1.bb b/meta/recipes-devtools/gcc/gcc-cross-canadian_4.5.1.bb
> > index 3eea4bc..92708d4 100644
> > --- a/meta/recipes-devtools/gcc/gcc-cross-canadian_4.5.1.bb
> > +++ b/meta/recipes-devtools/gcc/gcc-cross-canadian_4.5.1.bb
> > @@ -5,7 +5,7 @@ require gcc-cross-canadian.inc
> > require gcc-configure-sdk.inc
> > require gcc-package-sdk.inc
> >
> > -PR = "r3"
> > +PR = "r4"
> >
> > DEPENDS += "gmp-nativesdk mpfr-nativesdk libmpc-nativesdk elfutils-nativesdk"
> > RDEPENDS_${PN} += "mpfr-nativesdk libmpc-nativesdk elfutils-nativesdk"
> > diff --git a/meta/recipes-devtools/gcc/gcc-cross-initial_4.3.3.bb b/meta/recipes-devtools/gcc/gcc-cross-initial_4.3.3.bb
> > index 28ac1ab..ef52845 100644
> > --- a/meta/recipes-devtools/gcc/gcc-cross-initial_4.3.3.bb
> > +++ b/meta/recipes-devtools/gcc/gcc-cross-initial_4.3.3.bb
> > @@ -1,5 +1,5 @@
> > require gcc-cross_${PV}.bb
> > require gcc-cross-initial.inc
> >
> > -PR = "r5"
> > +PR = "r6"
> >
> > diff --git a/meta/recipes-devtools/gcc/gcc-cross-initial_4.5.1.bb b/meta/recipes-devtools/gcc/gcc-cross-initial_4.5.1.bb
> > index b2c257d..38e0964 100644
> > --- a/meta/recipes-devtools/gcc/gcc-cross-initial_4.5.1.bb
> > +++ b/meta/recipes-devtools/gcc/gcc-cross-initial_4.5.1.bb
> > @@ -1,5 +1,5 @@
> > require gcc-cross_${PV}.bb
> > require gcc-cross-initial.inc
> >
> > -PR = "r2"
> > +PR = "r3"
> >
> > diff --git a/meta/recipes-devtools/gcc/gcc-cross-intermediate_4.3.3.bb b/meta/recipes-devtools/gcc/gcc-cross-intermediate_4.3.3.bb
> > index a8473b0..deeee37 100644
> > --- a/meta/recipes-devtools/gcc/gcc-cross-intermediate_4.3.3.bb
> > +++ b/meta/recipes-devtools/gcc/gcc-cross-intermediate_4.3.3.bb
> > @@ -1,4 +1,4 @@
> > require gcc-cross_${PV}.bb
> > require gcc-cross-intermediate.inc
> > -PR = "r5"
> > +PR = "r6"
> >
> > diff --git a/meta/recipes-devtools/gcc/gcc-cross-intermediate_4.5.1.bb b/meta/recipes-devtools/gcc/gcc-cross-intermediate_4.5.1.bb
> > index e65d5df..9a30cb5 100644
> > --- a/meta/recipes-devtools/gcc/gcc-cross-intermediate_4.5.1.bb
> > +++ b/meta/recipes-devtools/gcc/gcc-cross-intermediate_4.5.1.bb
> > @@ -1,4 +1,4 @@
> > require gcc-cross_${PV}.bb
> > require gcc-cross-intermediate.inc
> > -PR = "r3"
> > +PR = "r4"
> >
> > diff --git a/meta/recipes-devtools/gcc/gcc-cross-kernel-3.4.4_csl-arm-2005q3.bb b/meta/recipes-devtools/gcc/gcc-cross-kernel-3.4.4_csl-arm-2005q3.bb
> > index 88e3842..462104f 100644
> > --- a/meta/recipes-devtools/gcc/gcc-cross-kernel-3.4.4_csl-arm-2005q3.bb
> > +++ b/meta/recipes-devtools/gcc/gcc-cross-kernel-3.4.4_csl-arm-2005q3.bb
> > @@ -9,7 +9,7 @@ require gcc-cross-kernel.inc
> >
> > DEFAULT_PREFERENCE = "-1"
> >
> > -PR = "r4"
> > +PR = "r5"
> >
> > SRC_URI += "file://gcc-3.4.4-makefile-fix.patch;patch=1"
> >
> > diff --git a/meta/recipes-devtools/gcc/gcc-cross_4.3.3.bb b/meta/recipes-devtools/gcc/gcc-cross_4.3.3.bb
> > index 5eaac5f..1a982f5 100644
> > --- a/meta/recipes-devtools/gcc/gcc-cross_4.3.3.bb
> > +++ b/meta/recipes-devtools/gcc/gcc-cross_4.3.3.bb
> > @@ -1,4 +1,4 @@
> > -PR = "r17"
> > +PR = "r18"
> >
> > require gcc-${PV}.inc
> > require gcc-cross4.inc
> > diff --git a/meta/recipes-devtools/gcc/gcc-cross_4.5.1.bb b/meta/recipes-devtools/gcc/gcc-cross_4.5.1.bb
> > index 399cdf9..78bb05a 100644
> > --- a/meta/recipes-devtools/gcc/gcc-cross_4.5.1.bb
> > +++ b/meta/recipes-devtools/gcc/gcc-cross_4.5.1.bb
> > @@ -1,4 +1,4 @@
> > -PR = "r2"
> > +PR = "r3"
> >
> > require gcc-${PV}.inc
> > require gcc-cross4.inc
> > diff --git a/meta/recipes-devtools/gcc/gcc-cross_csl-arm-2008q1.bb b/meta/recipes-devtools/gcc/gcc-cross_csl-arm-2008q1.bb
> > index 89534f1..0e7a1ee 100644
> > --- a/meta/recipes-devtools/gcc/gcc-cross_csl-arm-2008q1.bb
> > +++ b/meta/recipes-devtools/gcc/gcc-cross_csl-arm-2008q1.bb
> > @@ -1,4 +1,4 @@
> > -PR = "r5"
> > +PR = "r6"
> >
> > require gcc-csl-arm-2008q1.inc
> > require gcc-cross4.inc
> > diff --git a/meta/recipes-devtools/gcc/gcc-crosssdk-initial_4.3.3.bb b/meta/recipes-devtools/gcc/gcc-crosssdk-initial_4.3.3.bb
> > index b42de47..d3ddcb1 100644
> > --- a/meta/recipes-devtools/gcc/gcc-crosssdk-initial_4.3.3.bb
> > +++ b/meta/recipes-devtools/gcc/gcc-crosssdk-initial_4.3.3.bb
> > @@ -1,3 +1,3 @@
> > require gcc-cross-initial_${PV}.bb
> > require gcc-crosssdk-initial.inc
> > -PR = "r6"
> > +PR = "r7"
> > diff --git a/meta/recipes-devtools/gcc/gcc-crosssdk-initial_4.5.1.bb b/meta/recipes-devtools/gcc/gcc-crosssdk-initial_4.5.1.bb
> > index 240caf5..fec53b9 100644
> > --- a/meta/recipes-devtools/gcc/gcc-crosssdk-initial_4.5.1.bb
> > +++ b/meta/recipes-devtools/gcc/gcc-crosssdk-initial_4.5.1.bb
> > @@ -1,4 +1,4 @@
> > require gcc-cross-initial_${PV}.bb
> > require gcc-crosssdk-initial.inc
> >
> > -PR = "r2"
> > +PR = "r3"
> > diff --git a/meta/recipes-devtools/gcc/gcc-crosssdk-intermediate_4.3.3.bb b/meta/recipes-devtools/gcc/gcc-crosssdk-intermediate_4.3.3.bb
> > index cd1f966..2be05f1 100644
> > --- a/meta/recipes-devtools/gcc/gcc-crosssdk-intermediate_4.3.3.bb
> > +++ b/meta/recipes-devtools/gcc/gcc-crosssdk-intermediate_4.3.3.bb
> > @@ -1,3 +1,3 @@
> > require gcc-cross-intermediate_${PV}.bb
> > require gcc-crosssdk-intermediate.inc
> > -PR = "r8"
> > +PR = "r9"
> > diff --git a/meta/recipes-devtools/gcc/gcc-crosssdk-intermediate_4.5.1.bb b/meta/recipes-devtools/gcc/gcc-crosssdk-intermediate_4.5.1.bb
> > index a6653dd..161d870 100644
> > --- a/meta/recipes-devtools/gcc/gcc-crosssdk-intermediate_4.5.1.bb
> > +++ b/meta/recipes-devtools/gcc/gcc-crosssdk-intermediate_4.5.1.bb
> > @@ -1,4 +1,4 @@
> > require gcc-cross-intermediate_${PV}.bb
> > require gcc-crosssdk-intermediate.inc
> >
> > -PR = "r2"
> > +PR = "r3"
> > diff --git a/meta/recipes-devtools/gcc/gcc-crosssdk_4.5.1.bb b/meta/recipes-devtools/gcc/gcc-crosssdk_4.5.1.bb
> > index 129e8d3..7069088 100644
> > --- a/meta/recipes-devtools/gcc/gcc-crosssdk_4.5.1.bb
> > +++ b/meta/recipes-devtools/gcc/gcc-crosssdk_4.5.1.bb
> > @@ -1,4 +1,4 @@
> > require gcc-cross_${PV}.bb
> > require gcc-crosssdk.inc
> >
> > -PR = "r2"
> > +PR = "r3"
> > diff --git a/meta/recipes-devtools/gcc/gcc-runtime_4.3.3.bb b/meta/recipes-devtools/gcc/gcc-runtime_4.3.3.bb
> > index 99f927a..2f5cfb5 100644
> > --- a/meta/recipes-devtools/gcc/gcc-runtime_4.3.3.bb
> > +++ b/meta/recipes-devtools/gcc/gcc-runtime_4.3.3.bb
> > @@ -1,4 +1,4 @@
> > -PR = "r18"
> > +PR = "r19"
> >
> > require gcc-${PV}.inc
> > require gcc-configure-runtime.inc
> > diff --git a/meta/recipes-devtools/gcc/gcc-runtime_4.5.1.bb b/meta/recipes-devtools/gcc/gcc-runtime_4.5.1.bb
> > index 093f9bf..c1e680d 100644
> > --- a/meta/recipes-devtools/gcc/gcc-runtime_4.5.1.bb
> > +++ b/meta/recipes-devtools/gcc/gcc-runtime_4.5.1.bb
> > @@ -1,4 +1,4 @@
> > -PR = "r2"
> > +PR = "r3"
> >
> > require gcc-${PV}.inc
> > require gcc-configure-runtime.inc
> > diff --git a/meta/recipes-devtools/gcc/gcc_4.3.3.bb b/meta/recipes-devtools/gcc/gcc_4.3.3.bb
> > index f0471d4..ba6e7b2 100644
> > --- a/meta/recipes-devtools/gcc/gcc_4.3.3.bb
> > +++ b/meta/recipes-devtools/gcc/gcc_4.3.3.bb
> > @@ -1,4 +1,4 @@
> > -PR = "r11"
> > +PR = "r12"
> >
> > require gcc-${PV}.inc
> > require gcc-configure-target.inc
> > diff --git a/meta/recipes-devtools/gcc/gcc_4.5.1.bb b/meta/recipes-devtools/gcc/gcc_4.5.1.bb
> > index 919d4b0..25e455c 100644
> > --- a/meta/recipes-devtools/gcc/gcc_4.5.1.bb
> > +++ b/meta/recipes-devtools/gcc/gcc_4.5.1.bb
> > @@ -1,4 +1,4 @@
> > -PR = "r2"
> > +PR = "r3"
> > require gcc-${PV}.inc
> > require gcc-configure-target.inc
> > require gcc-package-target.inc
> > diff --git a/meta/recipes-devtools/gcc/gcc_csl-arm-2008q1.bb b/meta/recipes-devtools/gcc/gcc_csl-arm-2008q1.bb
> > index cc7540a..2df12ef 100644
> > --- a/meta/recipes-devtools/gcc/gcc_csl-arm-2008q1.bb
> > +++ b/meta/recipes-devtools/gcc/gcc_csl-arm-2008q1.bb
> > @@ -1,4 +1,4 @@
> > -PR = "r3"
> > +PR = "r4"
> >
> > require gcc-${PV}.inc
> > require gcc-configure-target.inc
> > diff --git a/meta/recipes-devtools/gcc/libgcc_4.5.1.bb b/meta/recipes-devtools/gcc/libgcc_4.5.1.bb
> > index b6cf268..3f7ce0a 100644
> > --- a/meta/recipes-devtools/gcc/libgcc_4.5.1.bb
> > +++ b/meta/recipes-devtools/gcc/libgcc_4.5.1.bb
> > @@ -1,6 +1,6 @@
> > require gcc-${PV}.inc
> >
> > -PR = "r0"
> > +PR = "r1"
> >
> > INHIBIT_DEFAULT_DEPS = "1"
> > DEPENDS = "virtual/${TARGET_PREFIX}gcc virtual/${TARGET_PREFIX}g++"
> > --
> > 1.7.4.1
> >
> >
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>
next prev parent reply other threads:[~2011-03-08 18:55 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-03-03 6:52 [PATCH V2 0/6] Fixes to get oe-core building Khem Raj
2011-03-03 6:52 ` [PATCHv3 1/6] sqlite3: Update version 3.7.3 -> 3.7.5 Khem Raj
2011-03-03 6:52 ` [PATCHv3 2/6] distro_tracking_fields.inc: Use 2.6.37.2 instead of 2.6.36 for linux-libc-headers Khem Raj
2011-03-08 6:39 ` Khem Raj
2011-03-08 18:51 ` Richard Purdie
2011-03-03 6:52 ` [PATCHv3 3/6] gcc: Statically link in support libraries e.g. libmpfr libgmp etc Khem Raj
2011-03-08 6:38 ` Khem Raj
2011-03-08 18:53 ` Richard Purdie [this message]
2011-03-08 19:04 ` Khem Raj
2011-03-12 12:50 ` Richard Purdie
2011-03-14 16:50 ` Tom Rini
2011-03-14 19:54 ` Richard Purdie
2011-03-15 17:33 ` Tom Rini
2011-03-16 13:27 ` Richard Purdie
2011-03-16 17:17 ` Tom Rini
2011-03-14 17:52 ` Khem Raj
2011-03-14 18:01 ` Richard Purdie
2011-03-14 18:42 ` Khem Raj
2011-03-03 6:52 ` [PATCHv3 4/6] sanity.bbclass: Check for /proc/sys/vm/mmap_min_addr to be >= 65536 Khem Raj
2011-03-03 7:15 ` Martin Jansa
2011-03-03 12:13 ` Richard Purdie
2011-03-03 15:48 ` Khem Raj
2011-03-03 6:52 ` [PATCHv3 5/6] poky-default.inc: Change LINUXLIBCVERSION "2.6.36" -> "2.6.37.2" Khem Raj
2011-03-08 6:39 ` Khem Raj
2011-03-08 18:48 ` Richard Purdie
2011-03-03 6:52 ` [PATCHv3 6/6] rpm: Fix linking error encountered in rpm-native Khem Raj
2011-03-03 12:07 ` Richard Purdie
2011-03-03 12:43 ` Koen Kooi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1299610396.602.104.camel@rex \
--to=richard.purdie@linuxfoundation.org \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox