mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 00:32:12 +02:00
Added a DEFAULTTUNE setting and included arch-powerpc.inc. This way we pick up the changes to TUNE_PKGARCH and things should be kept more in sync going forward. (From OE-Core rev: 2c9bd779b008be266072f3c6d79430f63ec02241) Signed-off-by: Kumar Gala <galak@kernel.crashing.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
13 lines
429 B
HTML
13 lines
429 B
HTML
DEFAULTTUNE ?= "powerpc64"
|
|
|
|
require conf/machine/include/powerpc/arch-powerpc.inc
|
|
|
|
TUNEVALID[m64] = "Power ELF64 standard ABI"
|
|
TUNE_CONFLICTS[m64] = "m32 nf"
|
|
TUNE_CCARGS += "${@bb.utils.contains("TUNE_FEATURES", "m64", "-m64", "", d)}"
|
|
TUNE_ARCH .= "${@bb.utils.contains("TUNE_FEATURES", [ "m64" ], "powerpc64", "", d)}"
|
|
|
|
AVAILTUNES += "powerpc64"
|
|
TUNE_FEATURES_tune-powerpc64 ?= "m64 fpu-hard"
|
|
BASE_LIB_tune-powerpc64 = "lib64"
|