diff options
author | Khem Raj <raj.khem@gmail.com> | 2020-01-18 11:41:19 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-01-19 23:49:39 +0000 |
commit | c2f78e062f6eb2350b0ad9b109b1001b7e23a6c5 (patch) | |
tree | f128810d517e1c2e359511cb4b4de5bdc74c0228 /meta/recipes-devtools | |
parent | bf2b73e1f38826709ba6014ecabc45c01c70bd22 (diff) | |
download | poky-c2f78e062f6eb2350b0ad9b109b1001b7e23a6c5.tar.gz |
gcc: Enable 32bit powerpcle at multi-arch for powerpc64le
Even though we do not expect any legacy ( 32bit ) for LE, linux-yocto
does enable the compat code, so enable 32bit support to get that going
(From OE-Core rev: 8e24fd8dcadc6dd13171a2c4cfec6bcff8db772a)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-common.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-common.inc b/meta/recipes-devtools/gcc/gcc-common.inc index 44cba287f3..3dcfdf835f 100644 --- a/meta/recipes-devtools/gcc/gcc-common.inc +++ b/meta/recipes-devtools/gcc/gcc-common.inc | |||
@@ -47,6 +47,7 @@ def get_gcc_multiarch_setting(bb, d): | |||
47 | "i586": "--enable-targets=all", | 47 | "i586": "--enable-targets=all", |
48 | "i686": "--enable-targets=all", | 48 | "i686": "--enable-targets=all", |
49 | "powerpc": "--enable-targets=powerpc64", | 49 | "powerpc": "--enable-targets=powerpc64", |
50 | "powerpc64le": "--enable-targets=powerpcle", | ||
50 | "mips": "--enable-targets=all", | 51 | "mips": "--enable-targets=all", |
51 | "sparc": "--enable-targets=all", | 52 | "sparc": "--enable-targets=all", |
52 | } | 53 | } |