All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] Bug fix for 1362
@ 2011-08-14 13:32 Yu Ke
  2011-08-14 13:32 ` [PATCH 1/1] gcc-cross-intermediate: revise the 64bithack.patch for multilib case Yu Ke
  0 siblings, 1 reply; 11+ messages in thread
From: Yu Ke @ 2011-08-14 13:32 UTC (permalink / raw)
  To: openembedded-core

Per discussion in mailing list, This patch make gcc honouring libdir,
to fix the bug 1362. it has been tested for qemux86, qemux86-64, qemuarm,
qemuppc

Signed-off-by: Yu Ke <ke.yu@intel.com>

The following changes since commit d126e22f6b3f27196144f87e22b36ebccd6dea65:
  Darren Hart (1):
        rt-tests: use an explicit commit ID

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib kyu3/bug-1362
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=kyu3/bug-1362

Yu Ke (1):
  gcc-cross-intermediate: revise the 64bithack.patch for multilib case

 meta/recipes-devtools/gcc/gcc-4.6.inc             |    2 +-
 meta/recipes-devtools/gcc/gcc-4.6/64bithack.patch |   16 +++++++++-------
 2 files changed, 10 insertions(+), 8 deletions(-)




^ permalink raw reply	[flat|nested] 11+ messages in thread

* [PATCH 1/1] gcc-cross-intermediate: revise the 64bithack.patch for multilib case
  2011-08-14 13:32 [PATCH 0/1] Bug fix for 1362 Yu Ke
@ 2011-08-14 13:32 ` Yu Ke
  2011-08-14 15:18   ` Khem Raj
  2011-08-14 17:31   ` Koen Kooi
  0 siblings, 2 replies; 11+ messages in thread
From: Yu Ke @ 2011-08-14 13:32 UTC (permalink / raw)
  To: openembedded-core

current gcc-cross-intermediate has build failure in qemux86-64 lib64
multilib case. the reason is that it still use lib instead of lib64
while do_install use the libdir i.e. lib64

so this patch fix this issue by making gcc honour the libdir.

CC: Kumar Gala <galak@kernel.crashing.org>
CC: Richard Purdie <richard.purdie@linuxfoundation.org>

Signed-off-by: Yu Ke <ke.yu@intel.com>
---
 meta/recipes-devtools/gcc/gcc-4.6.inc             |    2 +-
 meta/recipes-devtools/gcc/gcc-4.6/64bithack.patch |   16 +++++++++-------
 2 files changed, 10 insertions(+), 8 deletions(-)

diff --git a/meta/recipes-devtools/gcc/gcc-4.6.inc b/meta/recipes-devtools/gcc/gcc-4.6.inc
index 0a148b4..ff8ca24 100644
--- a/meta/recipes-devtools/gcc/gcc-4.6.inc
+++ b/meta/recipes-devtools/gcc/gcc-4.6.inc
@@ -1,6 +1,6 @@
 require gcc-common.inc
 
-PR = "r7"
+PR = "r8"
 
 # Third digit in PV should be incremented after a minor release
 # happens from this branch on gcc e.g. currently its 4.6.0
diff --git a/meta/recipes-devtools/gcc/gcc-4.6/64bithack.patch b/meta/recipes-devtools/gcc/gcc-4.6/64bithack.patch
index 4b846bb..c1129ca 100644
--- a/meta/recipes-devtools/gcc/gcc-4.6/64bithack.patch
+++ b/meta/recipes-devtools/gcc/gcc-4.6/64bithack.patch
@@ -5,18 +5,20 @@ By default gcc places 64 bit libs in a lib64 directory. This makes it use
 
 RP 25/7/10
 
+revise it to honour base_libdir
+
+Yu Ke <ke.yu@intel.com> Aug 13, 2011
+
 Index: gcc-4.6.0/gcc/config/i386/t-linux64
 ===================================================================
 --- gcc-4.6.0.orig/gcc/config/i386/t-linux64
 +++ gcc-4.6.0/gcc/config/i386/t-linux64
-@@ -24,8 +24,8 @@
- # MULTILIB_OSDIRNAMES according to what is found on the target.
- 
+@@ -25,7 +25,7 @@
+
  MULTILIB_OPTIONS = m64/m32
--MULTILIB_DIRNAMES = 64 32 
+ MULTILIB_DIRNAMES = 64 32 
 -MULTILIB_OSDIRNAMES = ../lib64 $(if $(wildcard $(shell echo $(SYSTEM_HEADER_DIR))/../../usr/lib32),../lib32,../lib)
-+MULTILIB_DIRNAMES = . 32
-+MULTILIB_OSDIRNAMES = . $(if $(wildcard $(shell echo $(SYSTEM_HEADER_DIR))/../../usr/lib32),../lib32,../lib)
- 
++MULTILIB_OSDIRNAMES = ../$(shell basename $(base_libdir)) $(if $(wildcard $(shell echo $(SYSTEM_HEADER_DIR))/../../usr/lib32),../lib32,../lib)
+
  LIBGCC = stmp-multilib
  INSTALL_LIBGCC = install-multilib
-- 
1.7.0.4




^ permalink raw reply related	[flat|nested] 11+ messages in thread

* Re: [PATCH 1/1] gcc-cross-intermediate: revise the 64bithack.patch for multilib case
  2011-08-14 13:32 ` [PATCH 1/1] gcc-cross-intermediate: revise the 64bithack.patch for multilib case Yu Ke
@ 2011-08-14 15:18   ` Khem Raj
  2011-08-15 12:41     ` Yu Ke
  2011-08-14 17:31   ` Koen Kooi
  1 sibling, 1 reply; 11+ messages in thread
From: Khem Raj @ 2011-08-14 15:18 UTC (permalink / raw)
  To: openembedded-core

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 08/14/2011 06:32 AM, Yu Ke wrote:
> current gcc-cross-intermediate has build failure in qemux86-64 lib64 
> multilib case. the reason is that it still use lib instead of lib64 
> while do_install use the libdir i.e. lib64
> 
> so this patch fix this issue by making gcc honour the libdir.

I think similar patch should be done to ppc and mips as well.

> 
> CC: Kumar Gala <galak@kernel.crashing.org> CC: Richard Purdie
> <richard.purdie@linuxfoundation.org>
> 
> Signed-off-by: Yu Ke <ke.yu@intel.com> --- 
> meta/recipes-devtools/gcc/gcc-4.6.inc             |    2 +- 
> meta/recipes-devtools/gcc/gcc-4.6/64bithack.patch |   16
> +++++++++------- 2 files changed, 10 insertions(+), 8 deletions(-)
> 
> diff --git a/meta/recipes-devtools/gcc/gcc-4.6.inc
> b/meta/recipes-devtools/gcc/gcc-4.6.inc index 0a148b4..ff8ca24
> 100644 --- a/meta/recipes-devtools/gcc/gcc-4.6.inc +++
> b/meta/recipes-devtools/gcc/gcc-4.6.inc @@ -1,6 +1,6 @@ require
> gcc-common.inc
> 
> -PR = "r7" +PR = "r8"
> 
> # Third digit in PV should be incremented after a minor release #
> happens from this branch on gcc e.g. currently its 4.6.0 diff --git
> a/meta/recipes-devtools/gcc/gcc-4.6/64bithack.patch
> b/meta/recipes-devtools/gcc/gcc-4.6/64bithack.patch index
> 4b846bb..c1129ca 100644 ---
> a/meta/recipes-devtools/gcc/gcc-4.6/64bithack.patch +++
> b/meta/recipes-devtools/gcc/gcc-4.6/64bithack.patch @@ -5,18 +5,20 @@
> By default gcc places 64 bit libs in a lib64 directory. This makes it
> use
> 
> RP 25/7/10
> 
> +revise it to honour base_libdir + +Yu Ke <ke.yu@intel.com> Aug 13,
> 2011 + Index: gcc-4.6.0/gcc/config/i386/t-linux64 
> =================================================================== 
> --- gcc-4.6.0.orig/gcc/config/i386/t-linux64 +++
> gcc-4.6.0/gcc/config/i386/t-linux64 -@@ -24,8 +24,8 @@ - #
> MULTILIB_OSDIRNAMES according to what is found on the target. - +@@
> -25,7 +25,7 @@ + MULTILIB_OPTIONS = m64/m32 --MULTILIB_DIRNAMES = 64
> 32 + MULTILIB_DIRNAMES = 64 32 -MULTILIB_OSDIRNAMES = ../lib64 $(if
> $(wildcard $(shell echo
> $(SYSTEM_HEADER_DIR))/../../usr/lib32),../lib32,../lib) 
> -+MULTILIB_DIRNAMES = . 32 -+MULTILIB_OSDIRNAMES = . $(if $(wildcard
> $(shell echo $(SYSTEM_HEADER_DIR))/../../usr/lib32),../lib32,../lib) 
> - ++MULTILIB_OSDIRNAMES = ../$(shell basename $(base_libdir)) $(if
> $(wildcard $(shell echo
> $(SYSTEM_HEADER_DIR))/../../usr/lib32),../lib32,../lib) + LIBGCC =
> stmp-multilib INSTALL_LIBGCC = install-multilib

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEARECAAYFAk5H51YACgkQuwUzVZGdMxQ8jgCfXo7MQSziJZqLCMjxgsakiac4
2UoAn3BoazvtV+hlGkGhMCBk9sOGuvYg
=emFC
-----END PGP SIGNATURE-----



^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 1/1] gcc-cross-intermediate: revise the 64bithack.patch for multilib case
  2011-08-14 13:32 ` [PATCH 1/1] gcc-cross-intermediate: revise the 64bithack.patch for multilib case Yu Ke
  2011-08-14 15:18   ` Khem Raj
@ 2011-08-14 17:31   ` Koen Kooi
  2011-08-15 12:48     ` Yu Ke
  1 sibling, 1 reply; 11+ messages in thread
From: Koen Kooi @ 2011-08-14 17:31 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer


Op 14 aug. 2011, om 15:32 heeft Yu Ke het volgende geschreven:

> current gcc-cross-intermediate has build failure in qemux86-64 lib64
> multilib case. the reason is that it still use lib instead of lib64
> while do_install use the libdir i.e. lib64
> 
> so this patch fix this issue by making gcc honour the libdir.
> 
> CC: Kumar Gala <galak@kernel.crashing.org>
> CC: Richard Purdie <richard.purdie@linuxfoundation.org>
> 
> Signed-off-by: Yu Ke <ke.yu@intel.com>
> ---
> meta/recipes-devtools/gcc/gcc-4.6.inc             |    2 +-
> meta/recipes-devtools/gcc/gcc-4.6/64bithack.patch |   16 +++++++++-------

wouldn't gcc 4.5 need a similar change?



^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 1/1] gcc-cross-intermediate: revise the 64bithack.patch for multilib case
  2011-08-14 15:18   ` Khem Raj
@ 2011-08-15 12:41     ` Yu Ke
  2011-08-15 15:49       ` Khem Raj
  0 siblings, 1 reply; 11+ messages in thread
From: Yu Ke @ 2011-08-15 12:41 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On 2011/8/14 23:18, Khem Raj wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> On 08/14/2011 06:32 AM, Yu Ke wrote:
>> current gcc-cross-intermediate has build failure in qemux86-64 lib64
>> multilib case. the reason is that it still use lib instead of lib64
>> while do_install use the libdir i.e. lib64
>>
>> so this patch fix this issue by making gcc honour the libdir.
>
> I think similar patch should be done to ppc and mips as well.

According to Kumar, current ppc works just fine in multilib 64bit case. 
so ppc may not need this kind of patch. I am not sure how is mips. Since 
i am not familar with mips, i'd like to leave it to other mips expert.

Regards
Ke



^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 1/1] gcc-cross-intermediate: revise the 64bithack.patch for multilib case
  2011-08-14 17:31   ` Koen Kooi
@ 2011-08-15 12:48     ` Yu Ke
  2011-08-15 13:16       ` Richard Purdie
  0 siblings, 1 reply; 11+ messages in thread
From: Yu Ke @ 2011-08-15 12:48 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer; +Cc: Koen Kooi

On 2011/8/15 1:31, Koen Kooi wrote:
>
> Op 14 aug. 2011, om 15:32 heeft Yu Ke het volgende geschreven:
>
>> current gcc-cross-intermediate has build failure in qemux86-64 lib64
>> multilib case. the reason is that it still use lib instead of lib64
>> while do_install use the libdir i.e. lib64
>>
>> so this patch fix this issue by making gcc honour the libdir.
>>
>> CC: Kumar Gala<galak@kernel.crashing.org>
>> CC: Richard Purdie<richard.purdie@linuxfoundation.org>
>>
>> Signed-off-by: Yu Ke<ke.yu@intel.com>
>> ---
>> meta/recipes-devtools/gcc/gcc-4.6.inc             |    2 +-
>> meta/recipes-devtools/gcc/gcc-4.6/64bithack.patch |   16 +++++++++-------
>
> wouldn't gcc 4.5 need a similar change?

yes, gcc 4.5 should also has this change. I will sent out another patch 
for this.

just curious question, what is gcc 4.5 for, since gcc 4.6 is already there?

Regards
Ke



^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 1/1] gcc-cross-intermediate: revise the 64bithack.patch for multilib case
  2011-08-15 12:48     ` Yu Ke
@ 2011-08-15 13:16       ` Richard Purdie
  2011-08-15 14:24         ` Yu Ke
  2011-08-16 22:50         ` Khem Raj
  0 siblings, 2 replies; 11+ messages in thread
From: Richard Purdie @ 2011-08-15 13:16 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer; +Cc: Koen Kooi

On Mon, 2011-08-15 at 20:48 +0800, Yu Ke wrote:
> On 2011/8/15 1:31, Koen Kooi wrote:
> >
> > Op 14 aug. 2011, om 15:32 heeft Yu Ke het volgende geschreven:
> >
> >> current gcc-cross-intermediate has build failure in qemux86-64 lib64
> >> multilib case. the reason is that it still use lib instead of lib64
> >> while do_install use the libdir i.e. lib64
> >>
> >> so this patch fix this issue by making gcc honour the libdir.
> >>
> >> CC: Kumar Gala<galak@kernel.crashing.org>
> >> CC: Richard Purdie<richard.purdie@linuxfoundation.org>
> >>
> >> Signed-off-by: Yu Ke<ke.yu@intel.com>
> >> ---
> >> meta/recipes-devtools/gcc/gcc-4.6.inc             |    2 +-
> >> meta/recipes-devtools/gcc/gcc-4.6/64bithack.patch |   16 +++++++++-------
> >
> > wouldn't gcc 4.5 need a similar change?
> 
> yes, gcc 4.5 should also has this change. I will sent out another patch 
> for this.

Please take a look at:

http://git.yoctoproject.org/cgit.cgi/poky-contrib/commit/?h=rpurdie/ml4&id=4de8e0e9c286ff64f1b7fd2e695fe2d62fdadfbd

I've updated the patch header and ensured that whichever compiler
options are used, the compiler works as expected and also applied this
to mips and pcc.

Could you also please open a bug about target gcc multilib as mentioned
in the patch header (targeted at post 1.1).

> just curious question, what is gcc 4.5 for, since gcc 4.6 is already there?

Some people are still using gcc 4.5 for various reasons. It is getting
to the point we should probably move that to meta-oe though?

Cheers,

Richard




^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 1/1] gcc-cross-intermediate: revise the 64bithack.patch for multilib case
  2011-08-15 13:16       ` Richard Purdie
@ 2011-08-15 14:24         ` Yu Ke
  2011-08-15 16:21           ` Richard Purdie
  2011-08-16 22:50         ` Khem Raj
  1 sibling, 1 reply; 11+ messages in thread
From: Yu Ke @ 2011-08-15 14:24 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer; +Cc: Koen Kooi

On 2011/8/15 21:16, Richard Purdie wrote:
> On Mon, 2011-08-15 at 20:48 +0800, Yu Ke wrote:
>> On 2011/8/15 1:31, Koen Kooi wrote:
>>>
>>> Op 14 aug. 2011, om 15:32 heeft Yu Ke het volgende geschreven:
>>>
>>>> current gcc-cross-intermediate has build failure in qemux86-64 lib64
>>>> multilib case. the reason is that it still use lib instead of lib64
>>>> while do_install use the libdir i.e. lib64
>>>>
>>>> so this patch fix this issue by making gcc honour the libdir.
>>>>
>>>> CC: Kumar Gala<galak@kernel.crashing.org>
>>>> CC: Richard Purdie<richard.purdie@linuxfoundation.org>
>>>>
>>>> Signed-off-by: Yu Ke<ke.yu@intel.com>
>>>> ---
>>>> meta/recipes-devtools/gcc/gcc-4.6.inc             |    2 +-
>>>> meta/recipes-devtools/gcc/gcc-4.6/64bithack.patch |   16 +++++++++-------
>>>
>>> wouldn't gcc 4.5 need a similar change?
>>
>> yes, gcc 4.5 should also has this change. I will sent out another patch
>> for this.
>
> Please take a look at:
>
> http://git.yoctoproject.org/cgit.cgi/poky-contrib/commit/?h=rpurdie/ml4&id=4de8e0e9c286ff64f1b7fd2e695fe2d62fdadfbd

Thanks. it is more comprehensive. just a small issue, the parentheses 
looks mismatching in

++MULTILIB_OSDIRNAMES = ../$(shell basename $(base_libdir) ../$(shell 
basename $(base_libdir)

>
> I've updated the patch header and ensured that whichever compiler
> options are used, the compiler works as expected and also applied this
> to mips and pcc.
>
> Could you also please open a bug about target gcc multilib as mentioned
> in the patch header (targeted at post 1.1).

done. http://bugzilla.yoctoproject.org/show_bug.cgi?id=1369

>
>> just curious question, what is gcc 4.5 for, since gcc 4.6 is already there?
>
> Some people are still using gcc 4.5 for various reasons. It is getting
> to the point we should probably move that to meta-oe though?
>
> Cheers,
>
> Richard
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>




^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 1/1] gcc-cross-intermediate: revise the 64bithack.patch for multilib case
  2011-08-15 12:41     ` Yu Ke
@ 2011-08-15 15:49       ` Khem Raj
  0 siblings, 0 replies; 11+ messages in thread
From: Khem Raj @ 2011-08-15 15:49 UTC (permalink / raw)
  To: Yu Ke; +Cc: Patches and discussions about the oe-core layer

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 08/15/2011 05:41 AM, Yu Ke wrote:
> On 2011/8/14 23:18, Khem Raj wrote:
>> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
>> 
>> On 08/14/2011 06:32 AM, Yu Ke wrote:
>>> current gcc-cross-intermediate has build failure in qemux86-64
>>> lib64 multilib case. the reason is that it still use lib instead
>>> of lib64 while do_install use the libdir i.e. lib64
>>> 
>>> so this patch fix this issue by making gcc honour the libdir.
>> 
>> I think similar patch should be done to ppc and mips as well.
> 
> According to Kumar, current ppc works just fine in multilib 64bit
> case. so ppc may not need this kind of patch. I am not sure how is
> mips. Since i am not familar with mips, i'd like to leave it to other
> mips expert.
> 

I guess since mips multilib is not yet there and /lib  is used by o32
abi even in multilib case things would be simple for mips.
Would using gcc defaults for x86_64 work ? It might break backward
compatibility in non multilib case

> Regards Ke

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)

iEUEARECAAYFAk5JQCAACgkQuwUzVZGdMxQdLwCY1ijPd8bFknmc8OLI9/OUVTZf
FACfToqH6QXmIRNIuZkIAkYHSSiFaro=
=pfvK
-----END PGP SIGNATURE-----



^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 1/1] gcc-cross-intermediate: revise the 64bithack.patch for multilib case
  2011-08-15 14:24         ` Yu Ke
@ 2011-08-15 16:21           ` Richard Purdie
  0 siblings, 0 replies; 11+ messages in thread
From: Richard Purdie @ 2011-08-15 16:21 UTC (permalink / raw)
  To: Yu Ke; +Cc: Koen Kooi, Patches and discussions about the oe-core layer

On Mon, 2011-08-15 at 22:24 +0800, Yu Ke wrote:
> On 2011/8/15 21:16, Richard Purdie wrote:
> > On Mon, 2011-08-15 at 20:48 +0800, Yu Ke wrote:
> >> On 2011/8/15 1:31, Koen Kooi wrote:
> >>>
> >>> Op 14 aug. 2011, om 15:32 heeft Yu Ke het volgende geschreven:
> >>>
> >>>> current gcc-cross-intermediate has build failure in qemux86-64 lib64
> >>>> multilib case. the reason is that it still use lib instead of lib64
> >>>> while do_install use the libdir i.e. lib64
> >>>>
> >>>> so this patch fix this issue by making gcc honour the libdir.
> >>>>
> >>>> CC: Kumar Gala<galak@kernel.crashing.org>
> >>>> CC: Richard Purdie<richard.purdie@linuxfoundation.org>
> >>>>
> >>>> Signed-off-by: Yu Ke<ke.yu@intel.com>
> >>>> ---
> >>>> meta/recipes-devtools/gcc/gcc-4.6.inc             |    2 +-
> >>>> meta/recipes-devtools/gcc/gcc-4.6/64bithack.patch |   16 +++++++++-------
> >>>
> >>> wouldn't gcc 4.5 need a similar change?
> >>
> >> yes, gcc 4.5 should also has this change. I will sent out another patch
> >> for this.
> >
> > Please take a look at:
> >
> > http://git.yoctoproject.org/cgit.cgi/poky-contrib/commit/?h=rpurdie/ml4&id=4de8e0e9c286ff64f1b7fd2e695fe2d62fdadfbd
> 
> Thanks. it is more comprehensive. just a small issue, the parentheses 
> looks mismatching in
> 
> ++MULTILIB_OSDIRNAMES = ../$(shell basename $(base_libdir) ../$(shell 
> basename $(base_libdir)

Right, I've just noticed my test build was failing and that is likely
why :)

> > I've updated the patch header and ensured that whichever compiler
> > options are used, the compiler works as expected and also applied this
> > to mips and pcc.
> >
> > Could you also please open a bug about target gcc multilib as mentioned
> > in the patch header (targeted at post 1.1).
> 
> done. http://bugzilla.yoctoproject.org/show_bug.cgi?id=1369

Great, thanks.

Cheers,

Richard




^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 1/1] gcc-cross-intermediate: revise the 64bithack.patch for multilib case
  2011-08-15 13:16       ` Richard Purdie
  2011-08-15 14:24         ` Yu Ke
@ 2011-08-16 22:50         ` Khem Raj
  1 sibling, 0 replies; 11+ messages in thread
From: Khem Raj @ 2011-08-16 22:50 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer; +Cc: Koen Kooi

On Mon, Aug 15, 2011 at 6:16 AM, Richard Purdie
<richard.purdie@linuxfoundation.org> wrote:
>> just curious question, what is gcc 4.5 for, since gcc 4.6 is already there?
>
> Some people are still using gcc 4.5 for various reasons. It is getting
> to the point we should probably move that to meta-oe though?
>
>
meta-oe already has recipes for gcc 4.5 so may be removing them from
oe-core and letting people who want to use 4.5
use meta-oe



^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2011-08-16 22:55 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-08-14 13:32 [PATCH 0/1] Bug fix for 1362 Yu Ke
2011-08-14 13:32 ` [PATCH 1/1] gcc-cross-intermediate: revise the 64bithack.patch for multilib case Yu Ke
2011-08-14 15:18   ` Khem Raj
2011-08-15 12:41     ` Yu Ke
2011-08-15 15:49       ` Khem Raj
2011-08-14 17:31   ` Koen Kooi
2011-08-15 12:48     ` Yu Ke
2011-08-15 13:16       ` Richard Purdie
2011-08-15 14:24         ` Yu Ke
2011-08-15 16:21           ` Richard Purdie
2011-08-16 22:50         ` 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.