From: Khem Raj Date: Fri, 1 Jul 2011 05:25:00 +0000 (-0700) Subject: uclibc: Fix compilation in thumb mode X-Git-Tag: 2011-1~899 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=3314325d95837cfe8091076444a85093d32320a4;p=openembedded-core.git uclibc: Fix compilation in thumb mode It was not setting COMPILE_IN_THUMB_MODE in .config when ARM_INSTRUCTION_MODE = thumb. Reason was that this entry has to exist in merged defconfig so we add it disabled which means no harm to other architectures Signed-off-by: Khem Raj Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-core/uclibc/uclibc-git/uClibc.distro b/meta/recipes-core/uclibc/uclibc-git/uClibc.distro index 3136e54945..223fb040f6 100644 --- a/meta/recipes-core/uclibc/uclibc-git/uClibc.distro +++ b/meta/recipes-core/uclibc/uclibc-git/uClibc.distro @@ -171,3 +171,10 @@ UCLIBC_HAS_PTY=y UCLIBC_BSD_SPECIFIC=y UCLIBC_HAS_EPOLL=y UCLIBC_HAS_FLOATS=y + +# The below option is needed for ARM since depending +# upong what intruction set is chosen this will be +# enabled. As such it is harmless and will be punted +# by menuconfig for other arches. + +# COMPILE_IN_THUMB_MODE is not set