diff options
author | Khem Raj <raj.khem@gmail.com> | 2011-06-30 22:25:00 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-07-02 00:02:24 +0100 |
commit | ad2363278f0ea86fcf3464f8f6073d3a3d06be63 (patch) | |
tree | e31267fffb33242afc0ced36981dc589f1b0e848 /meta | |
parent | 39de5f9ec2038ec048c7f3f4c61a62079f1a4b82 (diff) | |
download | poky-ad2363278f0ea86fcf3464f8f6073d3a3d06be63.tar.gz |
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
(From OE-Core rev: 3314325d95837cfe8091076444a85093d32320a4)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-core/uclibc/uclibc-git/uClibc.distro | 7 |
1 files changed, 7 insertions, 0 deletions
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 | |||
171 | UCLIBC_BSD_SPECIFIC=y | 171 | UCLIBC_BSD_SPECIFIC=y |
172 | UCLIBC_HAS_EPOLL=y | 172 | UCLIBC_HAS_EPOLL=y |
173 | UCLIBC_HAS_FLOATS=y | 173 | UCLIBC_HAS_FLOATS=y |
174 | |||
175 | # The below option is needed for ARM since depending | ||
176 | # upong what intruction set is chosen this will be | ||
177 | # enabled. As such it is harmless and will be punted | ||
178 | # by menuconfig for other arches. | ||
179 | |||
180 | # COMPILE_IN_THUMB_MODE is not set | ||