mirror of
https://git.yoctoproject.org/poky
synced 2026-06-01 00:59:48 +00:00
tclibc-uclibc: Fix TARGET_OS for powerpc
1a9ae8ea8c0540d41b8ff4d95c0420d6df754634 removed -uclibc hence it got all wrong for powerpc. uclibc TARGET_OS for classic ppc is linux-uclibc and for ppc w/ SPE its linux-uclibcspe (From OE-Core rev: 6c4ddd2d532ea91cd5752a7e56e8487cca1ac1e3) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -5,7 +5,7 @@
|
|||||||
TARGET_OS = "linux-uclibc"
|
TARGET_OS = "linux-uclibc"
|
||||||
TARGET_OS_arm = "linux-uclibceabi"
|
TARGET_OS_arm = "linux-uclibceabi"
|
||||||
TARGET_OS_armeb = "linux-uclibceabi"
|
TARGET_OS_armeb = "linux-uclibceabi"
|
||||||
TARGET_OS_powerpc = "linux${@['','-gnuspe'][bb.data.getVar('TARGET_FPU',d,1) in ['ppc-efd', 'ppc-efs']]}"
|
TARGET_OS_powerpc = "linux-uclibc${@['','spe'][bb.data.getVar('TARGET_FPU',d,1) in ['ppc-efd', 'ppc-efs']]}"
|
||||||
|
|
||||||
# Add uclibc overrides to the overrides.
|
# Add uclibc overrides to the overrides.
|
||||||
OVERRIDES =. "libc-uclibc:"
|
OVERRIDES =. "libc-uclibc:"
|
||||||
|
|||||||
Reference in New Issue
Block a user