From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga09.intel.com ([134.134.136.24]) by linuxtogo.org with esmtp (Exim 4.72) (envelope-from ) id 1SIfrk-0000A0-6m for openembedded-core@lists.openembedded.org; Fri, 13 Apr 2012 14:44:40 +0200 Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga102.jf.intel.com with ESMTP; 13 Apr 2012 05:35:18 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.67,352,1309762800"; d="scan'208";a="129072447" Received: from unknown (HELO helios.ger.corp.intel.com) ([10.252.120.75]) by orsmga001.jf.intel.com with ESMTP; 13 Apr 2012 05:35:17 -0700 From: Paul Eggleton To: openembedded-core@lists.openembedded.org Date: Fri, 13 Apr 2012 13:35:16 +0100 Message-Id: <1334320516-6987-1-git-send-email-paul.eggleton@linux.intel.com> X-Mailer: git-send-email 1.7.5.4 Subject: [PATCH] pseudo: default NO32LIBS to 1 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: Fri, 13 Apr 2012 12:44:40 -0000 If this value is not set to 1, then systems with some 32-bit libraries but no 32-bit version of libgcc installed will have pseudo-native fail at do_compile. It should only really be set to 0 by those who know what they are doing. Signed-off-by: Paul Eggleton --- meta/recipes-devtools/pseudo/pseudo.inc | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/meta/recipes-devtools/pseudo/pseudo.inc b/meta/recipes-devtools/pseudo/pseudo.inc index d5c33df..d710058 100644 --- a/meta/recipes-devtools/pseudo/pseudo.inc +++ b/meta/recipes-devtools/pseudo/pseudo.inc @@ -24,7 +24,7 @@ do_configure () { : } -NO32LIBS ??= "0" +NO32LIBS ??= "1" # Compile for the local machine arch... do_compile () { -- 1.7.5.4