diff options
author | Jeff Bailey <jeffbailey@google.com> | 2014-05-24 23:59:22 -0700 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-05-25 23:24:09 +0200 |
commit | a426a91973c03ea99bb49bace8141de2d1ab25d8 (patch) | |
tree | 3597d8779ef91a9dafeee40a0dfd177547fb8652 /package/glibc | |
parent | 696668b09b37c6a4db110880d519132a3da0fba5 (diff) | |
download | buildroot-a426a91973c03ea99bb49bace8141de2d1ab25d8.tar.gz buildroot-a426a91973c03ea99bb49bace8141de2d1ab25d8.zip |
Add support for powerpc64le
This patch adds support for powerpc64le-linux-gnu. This includes
needed patches to fakeroot and gmp.
gmp patch is from upstream HG tree.
fakeroot patch is from Ubuntu written by Adam Conrad.
Signed-off-by: Jeff Bailey <jeffbailey@google.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/glibc')
-rw-r--r-- | package/glibc/Config.in | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/package/glibc/Config.in b/package/glibc/Config.in index 693a33ee59..b690565766 100644 --- a/package/glibc/Config.in +++ b/package/glibc/Config.in @@ -2,13 +2,14 @@ if BR2_TOOLCHAIN_BUILDROOT_GLIBC choice prompt "glibc version" + default BR2_GLIBC_VERSION_2_19 if BR2_powerpc64le default BR2_GLIBC_VERSION_2_18 # Architectures supported in mainline glibc - depends on BR2_arm || BR2_armeb || BR2_aarch64 || \ - BR2_i386 || BR2_mips || BR2_mipsel || \ - BR2_mips64 || BR2_mips64el || BR2_powerpc || \ - BR2_sh || BR2_sh64 || BR2_sparc || \ - BR2_x86_64 || BR2_microblaze + depends on BR2_arm || BR2_armeb || BR2_aarch64 || \ + BR2_i386 || BR2_mips || BR2_mipsel || \ + BR2_mips64 || BR2_mips64el || BR2_powerpc || \ + BR2_powerpc64le || BR2_sh || BR2_sh64 || \ + BR2_sparc || BR2_x86_64 || BR2_microblaze config BR2_GLIBC_VERSION_2_18 bool "2.18" |