From patchwork Wed May 11 02:23:44 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [1/1] poky-defaults: fix defaults for libgcc recipes Date: Wed, 11 May 2011 02:23:44 -0000 From: Nitin A Kamble X-Patchwork-Id: 3711 Message-Id: <4959de180c316a6f7b54bec5e5080eaf110eea2d.1305080470.git.nitin.a.kamble@intel.com> To: openembedded-core@lists.openembedded.org,poky@yoctoproject.org From: Nitin A Kamble This fixes bug: [YOCTO #1021] the libgcc version was getting picked up as latest, which may not match with the version of gcc. And because of this the crt*.o files were missing from the resulting libgcc-dev package. libgcc1-4.6.0-r0.i586 perl-module-extutils-cbuilder-platform-windows-gcc-5.12.3-r0.i586 gcc-4.5.1-r4.i586 libgcc-s-dev-4.6.0-r0.i586 gcc-symlinks-4.5.1-r4.i586 /lib /lib/libgcc_s.so Signed-off-by: Nitin A Kamble --- meta/conf/distro/include/poky-default.inc | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/meta/conf/distro/include/poky-default.inc b/meta/conf/distro/include/poky-default.inc index 91985b3..0003865 100644 --- a/meta/conf/distro/include/poky-default.inc +++ b/meta/conf/distro/include/poky-default.inc @@ -35,6 +35,8 @@ PREFERRED_VERSION_gcc-crosssdk-intermediate ?= "${SDKGCCVERSION}" PREFERRED_VERSION_gcc-cross-canadian ?= "${GCCVERSION}" PREFERRED_VERSION_gcc-runtime ?= "${GCCVERSION}" PREFERRED_VERSION_gcc-runtime-nativesdk ?= "${SDKGCCVERSION}" +PREFERRED_VERSION_libgcc ?= "${GCCVERSION}" +PREFERRED_VERSION_libgcc-nativesdk ?= "${SDKGCCVERSION}" PREFERRED_VERSION_binutils ?= "${BINUVERSION}" PREFERRED_VERSION_binutils-cross ?= "${BINUVERSION}" PREFERRED_VERSION_binutils-crosssdk ?= "${BINUVERSION}"