* [PATCH] cross-canadian: Fix SHLIBSDIR when using multilib
@ 2013-10-15 13:40 Richard Purdie
2013-10-15 14:45 ` Khem Raj
0 siblings, 1 reply; 4+ messages in thread
From: Richard Purdie @ 2013-10-15 13:40 UTC (permalink / raw)
To: openembedded-core
Both nativesdk and multilib use MLPREFIX for their partciular purposes. When
we have both set, cross-canadian can confuse SHLIBSDIR. This forces the
variable to the correct value for cross-canadian, fixing toolchains in
multilib builds.
[YOCTO #5333]
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
diff --git a/meta/classes/cross-canadian.bbclass b/meta/classes/cross-canadian.bbclass
index 4387d05..7181c60 100644
--- a/meta/classes/cross-canadian.bbclass
+++ b/meta/classes/cross-canadian.bbclass
@@ -95,3 +95,8 @@ USE_NLS = "${SDKUSE_NLS}"
# We have to us TARGET_ARCH but we care about the absolute value
# and not any particular tune that is enabled.
TARGET_ARCH[vardepsexclude] = "TUNE_ARCH"
+
+# If MLPREFIX is set by multilib code, shlibs
+# points to the wrong place so force it
+SHLIBSDIRS = "${PKGDATA_DIR}/nativesdk-shlibs"
+SHLIBSWORKDIR = "${PKGDATA_DIR}/nativesdk-shlibs"
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] cross-canadian: Fix SHLIBSDIR when using multilib
2013-10-15 13:40 [PATCH] cross-canadian: Fix SHLIBSDIR when using multilib Richard Purdie
@ 2013-10-15 14:45 ` Khem Raj
2013-10-15 14:51 ` Richard Purdie
0 siblings, 1 reply; 4+ messages in thread
From: Khem Raj @ 2013-10-15 14:45 UTC (permalink / raw)
To: Richard Purdie; +Cc: openembedded-core
On Tue, Oct 15, 2013 at 6:40 AM, Richard Purdie
<richard.purdie@linuxfoundation.org> wrote:
> Both nativesdk and multilib use MLPREFIX for their partciular purposes. When
> we have both set, cross-canadian can confuse SHLIBSDIR. This forces the
> variable to the correct value for cross-canadian, fixing toolchains in
> multilib builds.
>
> [YOCTO #5333]
>
> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
> ---
> diff --git a/meta/classes/cross-canadian.bbclass b/meta/classes/cross-canadian.bbclass
> index 4387d05..7181c60 100644
> --- a/meta/classes/cross-canadian.bbclass
> +++ b/meta/classes/cross-canadian.bbclass
> @@ -95,3 +95,8 @@ USE_NLS = "${SDKUSE_NLS}"
> # We have to us TARGET_ARCH but we care about the absolute value
> # and not any particular tune that is enabled.
> TARGET_ARCH[vardepsexclude] = "TUNE_ARCH"
> +
> +# If MLPREFIX is set by multilib code, shlibs
> +# points to the wrong place so force it
> +SHLIBSDIRS = "${PKGDATA_DIR}/nativesdk-shlibs"
> +SHLIBSWORKDIR = "${PKGDATA_DIR}/nativesdk-shlibs"
in the patch that did not work for me
I was using ${SDKPKGSUFFIX} instead of hardcoding 'nativesdk'
and += instead of =
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] cross-canadian: Fix SHLIBSDIR when using multilib
2013-10-15 14:45 ` Khem Raj
@ 2013-10-15 14:51 ` Richard Purdie
2013-10-15 15:08 ` Khem Raj
0 siblings, 1 reply; 4+ messages in thread
From: Richard Purdie @ 2013-10-15 14:51 UTC (permalink / raw)
To: Khem Raj; +Cc: openembedded-core
On Tue, 2013-10-15 at 07:45 -0700, Khem Raj wrote:
> On Tue, Oct 15, 2013 at 6:40 AM, Richard Purdie
> <richard.purdie@linuxfoundation.org> wrote:
> > Both nativesdk and multilib use MLPREFIX for their partciular purposes. When
> > we have both set, cross-canadian can confuse SHLIBSDIR. This forces the
> > variable to the correct value for cross-canadian, fixing toolchains in
> > multilib builds.
> >
> > [YOCTO #5333]
> >
> > Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
> > ---
> > diff --git a/meta/classes/cross-canadian.bbclass b/meta/classes/cross-canadian.bbclass
> > index 4387d05..7181c60 100644
> > --- a/meta/classes/cross-canadian.bbclass
> > +++ b/meta/classes/cross-canadian.bbclass
> > @@ -95,3 +95,8 @@ USE_NLS = "${SDKUSE_NLS}"
> > # We have to us TARGET_ARCH but we care about the absolute value
> > # and not any particular tune that is enabled.
> > TARGET_ARCH[vardepsexclude] = "TUNE_ARCH"
> > +
> > +# If MLPREFIX is set by multilib code, shlibs
> > +# points to the wrong place so force it
> > +SHLIBSDIRS = "${PKGDATA_DIR}/nativesdk-shlibs"
> > +SHLIBSWORKDIR = "${PKGDATA_DIR}/nativesdk-shlibs"
>
> in the patch that did not work for me
> I was using ${SDKPKGSUFFIX} instead of hardcoding 'nativesdk'
> and += instead of =
Well, one of the fields only takes a single value and there is only one
correct value here so = is more correct. I also needed my preceding
patch but I tested this and it did work afterwards...
You could try this (and the other patch) and see if it helps?
Cheers,
Richard
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] cross-canadian: Fix SHLIBSDIR when using multilib
2013-10-15 14:51 ` Richard Purdie
@ 2013-10-15 15:08 ` Khem Raj
0 siblings, 0 replies; 4+ messages in thread
From: Khem Raj @ 2013-10-15 15:08 UTC (permalink / raw)
To: Richard Purdie; +Cc: openembedded-core
On Tue, Oct 15, 2013 at 7:51 AM, Richard Purdie
<richard.purdie@linuxfoundation.org> wrote:
> On Tue, 2013-10-15 at 07:45 -0700, Khem Raj wrote:
>> On Tue, Oct 15, 2013 at 6:40 AM, Richard Purdie
>> <richard.purdie@linuxfoundation.org> wrote:
>> > Both nativesdk and multilib use MLPREFIX for their partciular purposes. When
>> > we have both set, cross-canadian can confuse SHLIBSDIR. This forces the
>> > variable to the correct value for cross-canadian, fixing toolchains in
>> > multilib builds.
>> >
>> > [YOCTO #5333]
>> >
>> > Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
>> > ---
>> > diff --git a/meta/classes/cross-canadian.bbclass b/meta/classes/cross-canadian.bbclass
>> > index 4387d05..7181c60 100644
>> > --- a/meta/classes/cross-canadian.bbclass
>> > +++ b/meta/classes/cross-canadian.bbclass
>> > @@ -95,3 +95,8 @@ USE_NLS = "${SDKUSE_NLS}"
>> > # We have to us TARGET_ARCH but we care about the absolute value
>> > # and not any particular tune that is enabled.
>> > TARGET_ARCH[vardepsexclude] = "TUNE_ARCH"
>> > +
>> > +# If MLPREFIX is set by multilib code, shlibs
>> > +# points to the wrong place so force it
>> > +SHLIBSDIRS = "${PKGDATA_DIR}/nativesdk-shlibs"
>> > +SHLIBSWORKDIR = "${PKGDATA_DIR}/nativesdk-shlibs"
>>
>> in the patch that did not work for me
>> I was using ${SDKPKGSUFFIX} instead of hardcoding 'nativesdk'
>> and += instead of =
>
> Well, one of the fields only takes a single value and there is only one
> correct value here so = is more correct. I also needed my preceding
> patch but I tested this and it did work afterwards...
I see. how about using SDKPKGSUFFIX
>
> You could try this (and the other patch) and see if it helps?
I was trying them meanwhile now the build finished so they are working.
>
> Cheers,
>
> Richard
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-10-15 15:09 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-15 13:40 [PATCH] cross-canadian: Fix SHLIBSDIR when using multilib Richard Purdie
2013-10-15 14:45 ` Khem Raj
2013-10-15 14:51 ` Richard Purdie
2013-10-15 15:08 ` Khem Raj
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.