[oe-commits] Phil Blundell : libgcc: correct mode on libgcc_s.so. 1 to ensure it gets stripped

git version control git at git.openembedded.org
Wed Jul 20 14:33:21 UTC 2011


Module: openembedded-core.git
Branch: master
Commit: b3724a67ad70f509181555e6be98e1eb3b184bb7
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=b3724a67ad70f509181555e6be98e1eb3b184bb7

Author: Phil Blundell <philb at gnu.org>
Date:   Wed Jul 20 11:07:32 2011 +0100

libgcc: correct mode on libgcc_s.so.1 to ensure it gets stripped

If the library is installed without execute permission then package.bbclass
will not consider it for stripping.  This is particularly unfortunate because
there seems to be a bug somewhere else which is causing all DSOs to end up with
a NEEDED dependency on libgcc_s, even if they don't actually require it, and
hence it is getting installed in all images (for uclibc on i586 at least).

Signed-off-by: Phil Blundell <philb at gnu.org>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/recipes-devtools/gcc/libgcc_4.6.bb |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-devtools/gcc/libgcc_4.6.bb b/meta/recipes-devtools/gcc/libgcc_4.6.bb
index b0523c7..6a77ce4 100644
--- a/meta/recipes-devtools/gcc/libgcc_4.6.bb
+++ b/meta/recipes-devtools/gcc/libgcc_4.6.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++"
@@ -38,6 +38,7 @@ do_install () {
 	fi
 
 	chown -R root:root ${D}
+	chmod +x ${D}${base_libdir}/libgcc_s.so.*
 }
 
 do_package_write_ipk[depends] += "virtual/libc:do_package"





More information about the Openembedded-commits mailing list