From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga11.intel.com ([192.55.52.93]) by linuxtogo.org with esmtp (Exim 4.72) (envelope-from ) id 1QAzRt-0006IW-M8 for openembedded-core@lists.openembedded.org; Sat, 16 Apr 2011 08:57:42 +0200 Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga102.fm.intel.com with ESMTP; 15 Apr 2011 23:55:23 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.64,223,1301900400"; d="scan'208";a="679865889" Received: from unknown (HELO localhost) ([10.255.12.232]) by fmsmga002.fm.intel.com with ESMTP; 15 Apr 2011 23:55:21 -0700 Message-Id: <5f1cea3db666f2b95d285e32fe9174f79be44569.1302936483.git.sgw@linux.intel.com> In-Reply-To: References: Old-Date: Tue, 12 Apr 2011 16:29:48 +0800 Date: Fri, 15 Apr 2011 23:55:21 -0700 To: openembedded-core@lists.openembedded.org From: Saul Wold X-Mailman-Approved-At: Sat, 16 Apr 2011 12:03:17 +0200 Cc: Scott Rifenbark , Paul Eggleton , Jingdong Lu , Kang Kai , Xiaofeng Yan Subject: [PATCH 45/58] gcc: Add "--enable-clocale=gnu" option for LSB. X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.11 Precedence: list Reply-To: Patches and discussions about the oe-core layer List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Apr 2011 06:57:42 -0000 From: Jingdong Lu Add "--enable-clocale=gun" option for gcc configuration explicitly for LSB distro in order to make sure C++ library can use correct locale module. Fixes [YOCTO #796] Signed-off-by: Jingdong Lu --- meta/recipes-devtools/gcc/gcc-runtime_4.5.1.bb | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/meta/recipes-devtools/gcc/gcc-runtime_4.5.1.bb b/meta/recipes-devtools/gcc/gcc-runtime_4.5.1.bb index 2127eb6..189c0b8 100644 --- a/meta/recipes-devtools/gcc/gcc-runtime_4.5.1.bb +++ b/meta/recipes-devtools/gcc/gcc-runtime_4.5.1.bb @@ -1,4 +1,4 @@ -PR = "r5" +PR = "r6" require gcc-${PV}.inc require gcc-configure-runtime.inc @@ -9,3 +9,4 @@ SRC_URI_append = "file://fortran-cross-compile-hack.patch" ARCH_FLAGS_FOR_TARGET += "-isystem${STAGING_INCDIR}" EXTRA_OECONF += "--disable-libunwind-exceptions" +EXTRA_OECONF_append_poky-lsb = " --enable-clocale=gnu" -- 1.7.1.1