All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] bitbake meta-toolchain with gcc 4.5.1 failed
@ 2011-08-21 10:08 Robert Yang
  2011-08-21 10:08 ` [PATCH 1/1] " Robert Yang
  2011-08-24  3:42 ` [PATCH 0/1] " Saul Wold
  0 siblings, 2 replies; 3+ messages in thread
From: Robert Yang @ 2011-08-21 10:08 UTC (permalink / raw)
  To: openembedded-core

* Steps to reproduce the error:
1) Add the following lines to conf/local.conf:
  
SDKGCCVERSION="4.5.1"
GCCVERSION="4.5.1"

2) bitbake meta-toolchain

The we will notice the error that sed can't find the directory:
 
${TMPDIR}/work-shared/gcc-${PV}/gcc-${PV}-${PR}

we had changed the name of S from gcc-${PV} to gcc-${PV}-${PR}, but didn't
update meta/recipes-devtools/gcc/gcc-common.inc, so fix S in gcc-common.inc
would make it work.

The following changes since commit edd8e1e8b974eb3f0f9f66c2207aadf43612350b:

  documentation/adt-manual/adt-command.xml: general edits. (2011-08-20 17:52:00 -0700)

are available in the git repository at:
  git://git.pokylinux.org/poky-contrib robert/gcc_451
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=robert/gcc_451

Robert Yang (1):
  bitbake meta-toolchain with gcc 4.5.1 failed

 meta/recipes-devtools/gcc/gcc-common.inc |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)




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

* [PATCH 1/1] bitbake meta-toolchain with gcc 4.5.1 failed
  2011-08-21 10:08 [PATCH 0/1] bitbake meta-toolchain with gcc 4.5.1 failed Robert Yang
@ 2011-08-21 10:08 ` Robert Yang
  2011-08-24  3:42 ` [PATCH 0/1] " Saul Wold
  1 sibling, 0 replies; 3+ messages in thread
From: Robert Yang @ 2011-08-21 10:08 UTC (permalink / raw)
  To: openembedded-core

Fixes bug [YOCTO #1386]

1) Add the following lines to conf/local.conf:

SDKGCCVERSION="4.5.1"
GCCVERSION="4.5.1"

2) bitbake meta-toolchain

The we will notice the error that sed can't find the directory:

${TMPDIR}/work-shared/gcc-${PV}/gcc-${PV}-${PR}

we had changed the name of S from gcc-${PV} to gcc-${PV}-${PR}, but didn't
update meta/recipes-devtools/gcc/gcc-common.inc, so fix S in gcc-common.inc
would make it work.

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta/recipes-devtools/gcc/gcc-common.inc |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-devtools/gcc/gcc-common.inc b/meta/recipes-devtools/gcc/gcc-common.inc
index 52431fa..f83f4da 100644
--- a/meta/recipes-devtools/gcc/gcc-common.inc
+++ b/meta/recipes-devtools/gcc/gcc-common.inc
@@ -40,7 +40,7 @@ ${GNU_MIRROR}/gcc/	http://gcc.get-software.com/releases/ \n \
 gcclibdir = "${libdir}/gcc"
 BINV = "${PV}"
 #S = "${WORKDIR}/gcc-${PV}"
-S = "${TMPDIR}/work-shared/gcc-${PV}/gcc-${PV}-${PR}"
+S = "${TMPDIR}/work-shared/gcc-${PV}-${PR}/gcc-${PV}"
 B = "${WORKDIR}/gcc-${PV}/build.${HOST_SYS}.${TARGET_SYS}"
 
 # SS means Shared Stamps directory
-- 
1.7.1




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

* Re: [PATCH 0/1] bitbake meta-toolchain with gcc 4.5.1 failed
  2011-08-21 10:08 [PATCH 0/1] bitbake meta-toolchain with gcc 4.5.1 failed Robert Yang
  2011-08-21 10:08 ` [PATCH 1/1] " Robert Yang
@ 2011-08-24  3:42 ` Saul Wold
  1 sibling, 0 replies; 3+ messages in thread
From: Saul Wold @ 2011-08-24  3:42 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On 08/21/2011 03:08 AM, Robert Yang wrote:
> * Steps to reproduce the error:
> 1) Add the following lines to conf/local.conf:
>
> SDKGCCVERSION="4.5.1"
> GCCVERSION="4.5.1"
>
> 2) bitbake meta-toolchain
>
> The we will notice the error that sed can't find the directory:
>
> ${TMPDIR}/work-shared/gcc-${PV}/gcc-${PV}-${PR}
>
> we had changed the name of S from gcc-${PV} to gcc-${PV}-${PR}, but didn't
> update meta/recipes-devtools/gcc/gcc-common.inc, so fix S in gcc-common.inc
> would make it work.
>
> The following changes since commit edd8e1e8b974eb3f0f9f66c2207aadf43612350b:
>
>    documentation/adt-manual/adt-command.xml: general edits. (2011-08-20 17:52:00 -0700)
>
> are available in the git repository at:
>    git://git.pokylinux.org/poky-contrib robert/gcc_451
>    http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=robert/gcc_451
>
> Robert Yang (1):
>    bitbake meta-toolchain with gcc 4.5.1 failed
>
>   meta/recipes-devtools/gcc/gcc-common.inc |    2 +-
>   1 files changed, 1 insertions(+), 1 deletions(-)
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>

Merged into OE-Core

Thanks
	Sau!



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

end of thread, other threads:[~2011-08-24  3:47 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-08-21 10:08 [PATCH 0/1] bitbake meta-toolchain with gcc 4.5.1 failed Robert Yang
2011-08-21 10:08 ` [PATCH 1/1] " Robert Yang
2011-08-24  3:42 ` [PATCH 0/1] " Saul Wold

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.