mirror of
https://git.yoctoproject.org/poky
synced 2026-04-18 03:32:13 +02:00
gcc-testsuite: Fix qemu binary filtering code logic error
This code doesn't do what it first might appear to, it would for example remove 'm' characters from the left side of qemu-mips leaving 'ips'. Fix it to stop anyone else being confused by the subtle logic error. (From OE-Core rev: 888a7edf1c611eaf99eaf10a072ecc82cb386735) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -51,9 +51,9 @@ python check_prepare() {
|
||||
# enable all valid instructions, since the test suite itself does not
|
||||
# limit itself to the target cpu options.
|
||||
# - valid for x86*, powerpc, arm, arm64
|
||||
if qemu_binary.lstrip("qemu-") in ["x86_64", "i386", "arm", "aarch64"]:
|
||||
if qemu_binary.endswith(("x86_64", "i386", "arm", "aarch64")):
|
||||
args += ["-cpu", "max"]
|
||||
elif qemu_binary.lstrip("qemu-") in ["ppc"]:
|
||||
elif qemu_binary.endswith(("ppc")):
|
||||
args += d.getVar("QEMU_EXTRAOPTIONS_%s" % d.getVar('PACKAGE_ARCH')).split()
|
||||
sysroot = d.getVar("RECIPE_SYSROOT")
|
||||
args += ["-L", sysroot]
|
||||
|
||||
Reference in New Issue
Block a user