On Fri, Oct 28, 2011 at 4:03 AM, Richard Purdie <richard.pur...@linuxfoundation.org> wrote: > On Wed, 2011-10-26 at 22:07 -0500, Matthew McClintock wrote: >> This fixes an issue where we cannot find -lgcc when linking. We >> update the path to libgcc.a so the library can be installed >> correctly >> >> Signed-off-by: Matthew McClintock <m...@freescale.com> >> --- >> I really doubt this is the correct fix and I'm no expert but it's >> here for comments. This fixes a real u-boot cross compile build >> issue > > This patch looks very very confused to me. Firstly your subject summary > talks about libgcc-nativesdk. This is the compiler used to generate > binaries for SDKMACHINE so I seriously doubt you're using nativesdk to > build uboot. > >> The previous mv command was failing as the files did not exist >> and I also rejiggered the packages since I was not sure if >> gdb-cross-canadian-powerpc-dev was included in my tarball of >> the toolchain >> >> meta/recipes-devtools/gcc/libgcc_4.6.bb | 6 +++--- >> 1 files changed, 3 insertions(+), 3 deletions(-) >> >> diff --git a/meta/recipes-devtools/gcc/libgcc_4.6.bb >> b/meta/recipes-devtools/gcc/libgcc_4.6.bb >> index 63a46ec..7f3ac55 100644 >> --- a/meta/recipes-devtools/gcc/libgcc_4.6.bb >> +++ b/meta/recipes-devtools/gcc/libgcc_4.6.bb >> @@ -8,9 +8,8 @@ PACKAGES = "\ >> ${PN}-dev \ >> " >> >> -FILES_${PN} = "${base_libdir}/libgcc*.so.*" >> +FILES_${PN} = "${base_libdir}/libgcc*" > > This is changing the packging of libgcc too, not just libgcc-nativesdk. > It is not correct to be putting the dynamic linking symlinks in anything > but the -dev package so the above and the line below are therefore wrong > too. > >> FILES_${PN}-dev = " \ >> - ${base_libdir}/libgcc*.so \ >> ${libdir}/${TARGET_SYS}/${BINV}/crt* \ >> ${libdir}/${TARGET_SYS}/${BINV}/libgcc*" >> >> @@ -29,9 +28,10 @@ do_install () { >> if [ -f ${D}${libdir}/nof/libgcc_s.so ]; then >> mv ${D}${libdir}/nof/libgcc* ${D}${base_libdir} >> else >> - mv ${D}${libdir}/libgcc* ${D}${base_libdir} || true >> + cp ${D}${libdir}/${TARGET_SYS}/${BINV}/libgcc* >> ${D}${base_libdir} >> fi > > Equally, you're moving a static library from the -dev package into the > main package which is wrong, you only need that if you're doing > development. > > Are you sure your problem is not that you didn't have the libgcc-dev > package installed?
Yes, it turns out I was having some build issues with my environment. I changed branches in the middle of a build inadvertently and it screwed everything up. After a clean build, the toolchain finds libgcc.a if I apply this patch to the edison branch: commit f8b94b106f93d33d6ca1a87ac14d710772d77c67 Author: Khem Raj <raj.k...@gmail.com> Date: Thu Oct 20 22:28:42 2011 -0700 gcc-configure-sdk: Point sysroot to correct location (From OE-Core rev: c9883733fed9267b1a936c08500a4caf8dc52d3d) Signed-off-by: Khem Raj <raj.k...@gmail.com> Signed-off-by: Richard Purdie <richard.pur...@linuxfoundation.org> Sorry for the noise. Please ignore this. -M _______________________________________________ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core