mirror of
https://git.yoctoproject.org/poky
synced 2026-02-20 08:29:42 +01:00
This is the result of automated script conversion: scripts/contrib/convert-overrides.py <oe-core directory> converting the metadata to use ":" as the override character instead of "_". (From OE-Core rev: 42344347be29f0997cc2f7636d9603b1fe1875ae) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
24 lines
872 B
HTML
24 lines
872 B
HTML
DEFAULTTUNE ?= "powerpc64"
|
|
|
|
require conf/machine/include/powerpc/arch-powerpc.inc
|
|
|
|
TUNEVALID[m64] = "Power ELF64 standard ABI"
|
|
TUNECONFLICTS[m64] = "m32 nf"
|
|
TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'm64', ' -m64', '', d)}"
|
|
TUNE_ARCH .= "${@bb.utils.contains('TUNE_FEATURES', [ 'm64' ], 'powerpc64${ENDIAN_SFX}', '', d)}"
|
|
|
|
# musl only supports elfv2 ABI for ppc64
|
|
TUNE_CCARGS .= "${@['', ' -mabi=elfv2']['libc-musl' in d.getVar('OVERRIDES').split(':')]}"
|
|
|
|
AVAILTUNES += "powerpc64 powerpc64le"
|
|
|
|
TUNE_FEATURES:tune-powerpc64 = "m64 fpu-hard bigendian"
|
|
BASE_LIB:tune-powerpc64 = "lib64"
|
|
TUNE_PKGARCH:tune-powerpc64 = "powerpc64"
|
|
PACKAGE_EXTRA_ARCHS:tune-powerpc64 = "powerpc64"
|
|
|
|
TUNE_FEATURES:tune-powerpc64le = "m64 fpu-hard"
|
|
BASE_LIB:tune-powerpc64le = "lib64"
|
|
TUNE_PKGARCH:tune-powerpc64le = "powerpc64le"
|
|
PACKAGE_EXTRA_ARCHS:tune-powerpc64le = "powerpc64le"
|