mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 12:59:02 +02:00

It always executes the scripts whether 'qemu-usermode' in 'MACHINE_FEATURES' or not. Fix the criterion to make it work. (From OE-Core rev: 9e163246dcbbd2187c9ba28432c613b0d6c850c6) Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
33 lines
1.5 KiB
Plaintext
33 lines
1.5 KiB
Plaintext
#
|
|
# Copyright OpenEmbedded Contributors
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
# Not all platforms are supported by Qemu. Using qemu-user therefore
|
|
# involves a certain risk, which is also the reason why this feature
|
|
# is not part of the main cmake class by default.
|
|
#
|
|
# One use case is the execution of cross-compiled unit tests with CTest
|
|
# on the build machine. If CMAKE_EXEWRAPPER_ENABLED is configured,
|
|
# cmake --build --target test
|
|
# works transparently with qemu-user. If the cmake project is developed
|
|
# with this use case in mind this works very nicely also out of an IDE
|
|
# configured to use cmake-native for cross compiling.
|
|
|
|
inherit qemu cmake
|
|
|
|
DEPENDS:append:class-target = "${@' qemu-native' if bb.utils.contains('MACHINE_FEATURES', 'qemu-usermode', True, False, d) else ''}"
|
|
|
|
cmake_do_generate_toolchain_file:append:class-target() {
|
|
if ${@bb.utils.contains('MACHINE_FEATURES', 'qemu-usermode', 'true', 'false', d)}; then
|
|
# Write out a qemu wrapper that will be used as exe_wrapper so that cmake
|
|
# can run target helper binaries through that. This also allows to execute ctest.
|
|
qemu_binary="${@qemu_wrapper_cmdline(d, '${STAGING_DIR_HOST}', ['${STAGING_DIR_HOST}/${libdir}','${STAGING_DIR_HOST}/${base_libdir}'])}"
|
|
echo "#!/bin/sh" > "${WORKDIR}/cmake-qemuwrapper"
|
|
echo "$qemu_binary \"\$@\"" >> "${WORKDIR}/cmake-qemuwrapper"
|
|
chmod +x "${WORKDIR}/cmake-qemuwrapper"
|
|
echo "set( CMAKE_CROSSCOMPILING_EMULATOR ${WORKDIR}/cmake-qemuwrapper)" \
|
|
>> ${WORKDIR}/toolchain.cmake
|
|
fi
|
|
}
|