diff options
author | Andre McCurdy <armccurdy@gmail.com> | 2016-01-27 15:28:36 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-29 18:14:56 +0000 |
commit | 9563ee5d40fdcbb5e5f06872f4d0aa5b3b5c300e (patch) | |
tree | f9f7ee76b1d7246af37524326d185d4127a1e885 | |
parent | 9e107e356d0aab4999c4c50ca41ba81e168d77a2 (diff) | |
download | openembedded-core-9563ee5d40fdcbb5e5f06872f4d0aa5b3b5c300e.tar.gz openembedded-core-9563ee5d40fdcbb5e5f06872f4d0aa5b3b5c300e.tar.bz2 openembedded-core-9563ee5d40fdcbb5e5f06872f4d0aa5b3b5c300e.zip |
glib.inc: limit ARM_INSTRUCTION_SET over-rides to armv4/armv5
The original over-ride dates back to 2007:
http://git.openembedded.org/openembedded-core/commit/?id=fc5366261e12c100e18dc1d9ef0b86b91500e355
There are no obvious issues seen now when building glib-2.0 v2.46.2
in thumb2 for Cortex A15.
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | meta/recipes-core/glib-2.0/glib.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-core/glib-2.0/glib.inc b/meta/recipes-core/glib-2.0/glib.inc index 15c6688e56..dc88d19d0a 100644 --- a/meta/recipes-core/glib-2.0/glib.inc +++ b/meta/recipes-core/glib-2.0/glib.inc @@ -52,7 +52,9 @@ FILES_${PN}-dev += "${libdir}/glib-2.0/include \ FILES_${PN}-dbg += "${datadir}/glib-2.0/gdb ${datadir}/gdb" FILES_${PN}-codegen = "${datadir}/glib-2.0/codegen/*.py" -ARM_INSTRUCTION_SET = "arm" +ARM_INSTRUCTION_SET_armv4 = "arm" +ARM_INSTRUCTION_SET_armv5 = "arm" + USE_NLS = "yes" do_install_append () { |