mirror of
https://git.yoctoproject.org/poky
synced 2026-05-08 05:09:24 +00:00
valgrind: Use MIPS MACHINE_OVERRIDES
The mipsarch* MACHINE_OVERRIDES can be used to pass the same parameters to MIPS pre-R2 and R6 ISA variants. Use them to reduce duplication in supporting MIPS R6 ISA. (From OE-Core rev: 85280798306c0c1b1f36e5a10394ffaa7c4041f9) Signed-off-by: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
3c567e01c8
commit
61ad3d8da0
@@ -36,8 +36,11 @@ COMPATIBLE_HOST_armv4 = 'null'
|
||||
COMPATIBLE_HOST_armv5 = 'null'
|
||||
COMPATIBLE_HOST_armv6 = 'null'
|
||||
|
||||
# valgrind doesn't like mips soft float
|
||||
COMPATIBLE_HOST_mipsarch = "${@bb.utils.contains("TARGET_FPU", "soft", "null", ".*-linux", d)}"
|
||||
# Disable for some MIPS variants
|
||||
COMPATIBLE_HOST_mipsarcho32 = "${@bb.utils.contains("TARGET_FPU", "soft", "null", ".*-linux", d)}"
|
||||
COMPATIBLE_HOST_mipsarchn32 = 'null'
|
||||
COMPATIBLE_HOST_mipsarchn64 = "${@bb.utils.contains("TARGET_FPU", "soft", "null", ".*-linux", d)}"
|
||||
COMPATIBLE_HOST_mipsarchr6 = 'null'
|
||||
|
||||
inherit autotools ptest
|
||||
|
||||
|
||||
Reference in New Issue
Block a user