diff options
author | Nitin A Kamble <nitin.a.kamble@intel.com> | 2011-07-27 15:27:27 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-08-09 15:17:57 +0100 |
commit | 23c16e22e7d3d3e50201c0283eb7bb3ee96b3b5c (patch) | |
tree | 6a1992f44a577fcad260449ba2c1e37b3c703a3d /meta/classes | |
parent | ca394457c5d7b2cb4544de7ce2d29008ec6173ae (diff) | |
download | poky-23c16e22e7d3d3e50201c0283eb7bb3ee96b3b5c.tar.gz |
siteinfo.bbclass: add entries for new x86_64 ABI x32 target
(From OE-Core rev: 1d14c146e31d2d4111d8daafbfe01d23f036fd7d)
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/siteinfo.bbclass | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/meta/classes/siteinfo.bbclass b/meta/classes/siteinfo.bbclass index 9dacd58d13..a61b5e50cd 100644 --- a/meta/classes/siteinfo.bbclass +++ b/meta/classes/siteinfo.bbclass | |||
@@ -42,12 +42,14 @@ def siteinfo_data(d): | |||
42 | "sh4": "endian-little bit-32 sh-common", | 42 | "sh4": "endian-little bit-32 sh-common", |
43 | "sparc": "endian-big bit-32", | 43 | "sparc": "endian-big bit-32", |
44 | "viac3": "endian-little bit-32 ix86-common", | 44 | "viac3": "endian-little bit-32 ix86-common", |
45 | "x86_64": "endian-little bit-64", | 45 | "x86_64": "endian-little", # bitinfo specified in targetinfo |
46 | } | 46 | } |
47 | osinfo = { | 47 | osinfo = { |
48 | "darwin": "common-darwin", | 48 | "darwin": "common-darwin", |
49 | "darwin9": "common-darwin", | 49 | "darwin9": "common-darwin", |
50 | "linux": "common-linux common-glibc", | 50 | "linux": "common-linux common-glibc", |
51 | "linux-gnu": "common-linux common-glibc", | ||
52 | "linux-gnux32": "common-linux common-glibc", | ||
51 | "linux-gnueabi": "common-linux common-glibc", | 53 | "linux-gnueabi": "common-linux common-glibc", |
52 | "linux-gnuspe": "common-linux common-glibc", | 54 | "linux-gnuspe": "common-linux common-glibc", |
53 | "linux-uclibc": "common-linux common-uclibc", | 55 | "linux-uclibc": "common-linux common-uclibc", |
@@ -68,6 +70,14 @@ def siteinfo_data(d): | |||
68 | "powerpc-linux-uclibcspe": "powerpc-linux powerpc32-linux powerpc-linux-uclibc", | 70 | "powerpc-linux-uclibcspe": "powerpc-linux powerpc32-linux powerpc-linux-uclibc", |
69 | "powerpc64-linux-gnuspe": "powerpc-linux powerpc64-linux", | 71 | "powerpc64-linux-gnuspe": "powerpc-linux powerpc64-linux", |
70 | "powerpc64-linux": "powerpc-linux", | 72 | "powerpc64-linux": "powerpc-linux", |
73 | "x86_64-cygwin": "bit-64", | ||
74 | "x86_64-darwin": "bit-64", | ||
75 | "x86_64-darwin9": "bit-64", | ||
76 | "x86_64-linux": "bit-64", | ||
77 | "x86_64-linux-uclibc": "bit-64", | ||
78 | "x86_64-linux-gnu": "bit-64 x86_64-linux", | ||
79 | "x86_64-linux-gnux32": "bit-32 ix86-common", | ||
80 | "x86_64-mingw32": "bit-64", | ||
71 | } | 81 | } |
72 | 82 | ||
73 | hostarch = d.getVar("HOST_ARCH", True) | 83 | hostarch = d.getVar("HOST_ARCH", True) |