diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2011-07-22 04:16:52 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-07-22 11:56:51 +0100 |
commit | 69c0b3502014f4be8cb3ef4da540505f00e4b1a0 (patch) | |
tree | 4eeaaa6d4ae17a4978b3ac1bc73880e7b8ba7fb7 /meta/site | |
parent | 960e1e6d46a54af208d531c37583c25936b32cfb (diff) | |
download | poky-69c0b3502014f4be8cb3ef4da540505f00e4b1a0.tar.gz |
site/powerpc64-linux: Start initial site config
Use ac_cv_sizeof_* from eglibc as starting point for powerpc64-linux
site info. We will refactor common bits that are needed out of
powerpc32-linux based on build issues.
(From OE-Core rev: 0f094d208b4a6ea21fb69a3e770f5bf742bf2155)
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/site')
-rw-r--r-- | meta/site/powerpc64-linux | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/meta/site/powerpc64-linux b/meta/site/powerpc64-linux new file mode 100644 index 0000000000..9430ea1e23 --- /dev/null +++ b/meta/site/powerpc64-linux | |||
@@ -0,0 +1,21 @@ | |||
1 | ac_cv_sizeof_char=${ac_cv_sizeof_char=1} | ||
2 | ac_cv_sizeof_char_p=${ac_cv_sizeof_char_p=8} | ||
3 | ac_cv_sizeof_double=${ac_cv_sizeof_double=8} | ||
4 | ac_cv_sizeof_float=${ac_cv_sizeof_float=4} | ||
5 | ac_cv_sizeof_int=${ac_cv_sizeof_int=4} | ||
6 | ac_cv_sizeof_long=${ac_cv_sizeof_long=8} | ||
7 | ac_cv_sizeof_long_double=${ac_cv_sizeof_long_double=16} | ||
8 | ac_cv_sizeof_long_int=${ac_cv_sizeof_long_int=8} | ||
9 | ac_cv_sizeof_long_long=${ac_cv_sizeof_long_long=8} | ||
10 | ac_cv_sizeof_long_long_int=${ac_cv_sizeof_long_long_int=8} | ||
11 | ac_cv_sizeof_short=${ac_cv_sizeof_short=2} | ||
12 | ac_cv_sizeof_short_int=${ac_cv_sizeof_short_int=2} | ||
13 | ac_cv_sizeof_signed_char=${ac_cv_sizeof_signed_char=1} | ||
14 | ac_cv_sizeof_unsigned_char=${ac_cv_sizeof_unsigned_char=1} | ||
15 | ac_cv_sizeof_unsigned_int=${ac_cv_sizeof_unsigned_int=4} | ||
16 | ac_cv_sizeof_unsigned_long=${ac_cv_sizeof_unsigned_long=8} | ||
17 | ac_cv_sizeof_unsigned_long_int=${ac_cv_sizeof_unsigned_long_int=8} | ||
18 | ac_cv_sizeof_unsigned_long_long_int=${ac_cv_sizeof_unsigned_long_long_int=8} | ||
19 | ac_cv_sizeof_unsigned_short=${ac_cv_sizeof_unsigned_short=2} | ||
20 | ac_cv_sizeof_unsigned_short_int=${ac_cv_sizeof_unsigned_short_int=2} | ||
21 | ac_cv_sizeof_void_p=${ac_cv_sizeof_void_p=8} | ||