]> code.ossystems Code Review - openembedded-core.git/commitdiff
libc-package: Add sh4 and mips64 to arch options
authorKhem Raj <raj.khem@gmail.com>
Wed, 25 Apr 2012 22:41:14 +0000 (15:41 -0700)
committerKhem Raj <raj.khem@gmail.com>
Mon, 21 May 2012 03:24:36 +0000 (20:24 -0700)
needed for new architecture support

Signed-off-by: Khem Raj <raj.khem@gmail.com>
meta/classes/libc-package.bbclass

index 10f5f87487f03b0722f5664ac2d2cdd8bf5e897c..9df3c17116beeafd3610eb258038e27576f76e70 100644 (file)
@@ -266,10 +266,13 @@ python package_do_split_gconvs () {
                        target_arch = d.getVar('TARGET_ARCH', True)
                        locale_arch_options = { \
                                "arm":     " --uint32-align=4 --little-endian ", \
+                               "sh4":     " --uint32-align=4 --big-endian ",    \
                                "powerpc": " --uint32-align=4 --big-endian ",    \
                                "powerpc64": " --uint32-align=4 --big-endian ",  \
                                "mips":    " --uint32-align=4 --big-endian ",    \
+                               "mips64":  " --uint32-align=4 --big-endian ",    \
                                "mipsel":  " --uint32-align=4 --little-endian ", \
+                               "mips64el":" --uint32-align=4 --little-endian ", \
                                "i586":    " --uint32-align=4 --little-endian ", \
                                "i686":    " --uint32-align=4 --little-endian ", \
                                "x86_64":  " --uint32-align=4 --little-endian "  }