All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] Fix for GCC missing liblto_plugin.so
@ 2011-07-12  7:20 Saul Wold
  2011-07-12  7:20 ` [PATCH 1/1] gcc: Fix packaging correctly Saul Wold
  2011-07-12 13:50 ` [PATCH 0/1] Fix for GCC missing liblto_plugin.so Richard Purdie
  0 siblings, 2 replies; 3+ messages in thread
From: Saul Wold @ 2011-07-12  7:20 UTC (permalink / raw)
  To: openembedded-core

Richard,

This is the patch for the missing liblto_plugin.so issue, minor
correction of how things get packaged.

Sau!


The following changes since commit e66c2999afa2b3efbce8bb46c89f9db5e15f35c7:

  libx11: ensure nativesdk uses correct DEPENDS and XCB flags (2011-07-10 09:49:06 +0100)

are available in the git repository at:
  git://git.openembedded.org/openembedded-core-contrib sgw/fix
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=sgw/fix

Saul Wold (1):
  gcc: Fix packaging correctly

 meta/recipes-devtools/gcc/gcc-4.6.inc            |    2 +-
 meta/recipes-devtools/gcc/gcc-package-target.inc |    9 ++++++---
 2 files changed, 7 insertions(+), 4 deletions(-)

-- 
1.7.3.4




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

* [PATCH 1/1] gcc: Fix packaging correctly
  2011-07-12  7:20 [PATCH 0/1] Fix for GCC missing liblto_plugin.so Saul Wold
@ 2011-07-12  7:20 ` Saul Wold
  2011-07-12 13:50 ` [PATCH 0/1] Fix for GCC missing liblto_plugin.so Richard Purdie
  1 sibling, 0 replies; 3+ messages in thread
From: Saul Wold @ 2011-07-12  7:20 UTC (permalink / raw)
  To: openembedded-core

[YOCTO #1233]

This fix directly packages the contents in  and adds the lib*.so
correctly to the -dev package.

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 meta/recipes-devtools/gcc/gcc-4.6.inc            |    2 +-
 meta/recipes-devtools/gcc/gcc-package-target.inc |    9 ++++++---
 2 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/meta/recipes-devtools/gcc/gcc-4.6.inc b/meta/recipes-devtools/gcc/gcc-4.6.inc
index a880111..56064b5 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 = "r6"
+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-package-target.inc b/meta/recipes-devtools/gcc/gcc-package-target.inc
index 69abf72..9a91a7f 100644
--- a/meta/recipes-devtools/gcc/gcc-package-target.inc
+++ b/meta/recipes-devtools/gcc/gcc-package-target.inc
@@ -14,10 +14,12 @@ FILES_${PN} = "\
   ${bindir}/${TARGET_PREFIX}gcc \
   ${bindir}/${TARGET_PREFIX}gccbug \
   ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/collect2 \
-  ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/* \
+  ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/cc* \
+  ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/lto* \
+  ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/lib*${SOLIBS} \
   ${gcclibdir}/${TARGET_SYS}/${BINV}/*.o \
   ${gcclibdir}/${TARGET_SYS}/${BINV}/specs \
-  ${gcclibdir}/${TARGET_SYS}/${BINV}/lib* \
+  ${gcclibdir}/${TARGET_SYS}/${BINV}/lib*${SOLIBS} \
   ${gcclibdir}/${TARGET_SYS}/${BINV}/include \
   ${gcclibdir}/${TARGET_SYS}/${BINV}/include-fixed \
 "
@@ -26,6 +28,8 @@ FILES_${PN}-dbg += "\
 "
 FILES_${PN}-dev = "\
   ${gcclibdir}/${TARGET_SYS}/${BINV}/plugin/include/ \
+  ${gcclibdir}/${TARGET_SYS}/${BINV}/lib*${SOLIBSDEV} \
+  ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/lib*${SOLIBSDEV} \
 "
 FILES_${PN}-symlinks = "\
   ${bindir}/cc \
@@ -80,7 +84,6 @@ do_install () {
 	# Cleanup some of the ${libdir}{,exec}/gcc stuff ...
 	rm -r ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/install-tools
 	rm -r ${D}${libexecdir}/gcc/${TARGET_SYS}/${BINV}/install-tools
-	rm -r ${D}${libexecdir}/gcc/${TARGET_SYS}/${BINV}/*.so
 	rm -r ${D}${libexecdir}/gcc/${TARGET_SYS}/${BINV}/*.la
 
 	# Hack around specs file assumptions
-- 
1.7.3.4




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

* Re: [PATCH 0/1] Fix for GCC missing liblto_plugin.so
  2011-07-12  7:20 [PATCH 0/1] Fix for GCC missing liblto_plugin.so Saul Wold
  2011-07-12  7:20 ` [PATCH 1/1] gcc: Fix packaging correctly Saul Wold
@ 2011-07-12 13:50 ` Richard Purdie
  1 sibling, 0 replies; 3+ messages in thread
From: Richard Purdie @ 2011-07-12 13:50 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Tue, 2011-07-12 at 00:20 -0700, Saul Wold wrote:
> Richard,
> 
> This is the patch for the missing liblto_plugin.so issue, minor
> correction of how things get packaged.
> 
> Sau!
> 
> 
> The following changes since commit e66c2999afa2b3efbce8bb46c89f9db5e15f35c7:
> 
>   libx11: ensure nativesdk uses correct DEPENDS and XCB flags (2011-07-10 09:49:06 +0100)
> 
> are available in the git repository at:
>   git://git.openembedded.org/openembedded-core-contrib sgw/fix
>   http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=sgw/fix
> 
> Saul Wold (1):
>   gcc: Fix packaging correctly

Merged to master, thanks.

Richard




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

end of thread, other threads:[~2011-07-12 13:54 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-07-12  7:20 [PATCH 0/1] Fix for GCC missing liblto_plugin.so Saul Wold
2011-07-12  7:20 ` [PATCH 1/1] gcc: Fix packaging correctly Saul Wold
2011-07-12 13:50 ` [PATCH 0/1] Fix for GCC missing liblto_plugin.so Richard Purdie

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.