From 203eb8601efb01177e26ede374f315c5eaed990c Mon Sep 17 00:00:00 2001 From: Eric BENARD Date: Tue, 14 Sep 2010 09:39:33 +0000 Subject: [PATCH] python-native: configure unicode to ucs4 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit * while trying to run gdb from an SDK created by OE, I got the following errors: /usr/local/angstrom/arm/bin/arm-angstrom-linux-gnueabi-gdb: undefined symbol: PyUnicodeUCS2_FromEncodedObject * the reason is that the workstation (ubuntu 10.04 or 9.01)'s Python is compiled using ucs4 and the python-native used to create arm-angstrom-linux-gnueabi-gdb is using ucs2, the problem is detailed here : http://docs.python.org/faq/extending#when-importing-module-x-why-do-i-get-undefined-symbol-pyunicodeucs2 * configuring python-native with ucs=4 solves this problem. Signed-off-by: Eric Bénard Acked-by: Khem Raj --- recipes/python/python-native_2.6.5.bb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/recipes/python/python-native_2.6.5.bb b/recipes/python/python-native_2.6.5.bb index 66573e9bfd..999335cd65 100644 --- a/recipes/python/python-native_2.6.5.bb +++ b/recipes/python/python-native_2.6.5.bb @@ -20,6 +20,10 @@ S = "${WORKDIR}/Python-${PV}" inherit native +EXTRA_OECONF_append = '\ + --enable-unicode=ucs4 \ +' + EXTRA_OEMAKE = '\ BUILD_SYS="" \ HOST_SYS="" \ -- 2.39.5