summaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2017-03-30 15:02:21 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-03-31 10:10:29 +0100
commit8b41b5ddfe20bfc22133339597ffce2829caa229 (patch)
treef078b267fd25468b5336e8cb253b030cf8b20453 /meta/classes
parent408e0b46aec572a17e72844bbce1139af7cf05c8 (diff)
downloadpoky-8b41b5ddfe20bfc22133339597ffce2829caa229.tar.gz
multilib_header: Update wrapper to handle arm 32/64 bit
Having arm 32/64 bit headers coexisting turns out to be tricky. Unfortunately our wrapper works using wordsize.h and this differs on arm so we can't use it. Therefore replicate the logic here for arm. I did look into writing our own wordsize.h but we also need to remap kernel headers on arm and since wordsize.h comes from libc, that doesn't work for kernel headers. (From OE-Core rev: 141dc7136c9c62da1d30132df4b3244fe6d8898d) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r--meta/classes/multilib_header.bbclass7
1 files changed, 0 insertions, 7 deletions
diff --git a/meta/classes/multilib_header.bbclass b/meta/classes/multilib_header.bbclass
index 304c28e771..e03f5b13b2 100644
--- a/meta/classes/multilib_header.bbclass
+++ b/meta/classes/multilib_header.bbclass
@@ -13,13 +13,9 @@ oe_multilib_header() {
13 ;; 13 ;;
14 *) 14 *)
15 esac 15 esac
16 # We use
17 # For ARM: We don't support multilib builds.
18 # For MIPS: "n32" is a special case, which needs to be 16 # For MIPS: "n32" is a special case, which needs to be
19 # distinct from both 64-bit and 32-bit. 17 # distinct from both 64-bit and 32-bit.
20 case ${TARGET_ARCH} in 18 case ${TARGET_ARCH} in
21 arm*) return
22 ;;
23 mips*) case "${MIPSPKGSFX_ABI}" in 19 mips*) case "${MIPSPKGSFX_ABI}" in
24 "-n32") 20 "-n32")
25 ident=n32 21 ident=n32
@@ -31,9 +27,6 @@ oe_multilib_header() {
31 ;; 27 ;;
32 *) ident=${SITEINFO_BITS} 28 *) ident=${SITEINFO_BITS}
33 esac 29 esac
34 if echo ${TARGET_ARCH} | grep -q arm; then
35 return
36 fi
37 for each_header in "$@" ; do 30 for each_header in "$@" ; do
38 if [ ! -f "${D}/${includedir}/$each_header" ]; then 31 if [ ! -f "${D}/${includedir}/$each_header" ]; then
39 bberror "oe_multilib_header: Unable to find header $each_header." 32 bberror "oe_multilib_header: Unable to find header $each_header."