mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-08 11:42:33 +00:00
Currently there is no way to support running a board on multiple emulation platforms nor to choose a desired emulation platform for the simulation to be run on. This commit introduces a new SUPPORTED_EMU_PLATFORMS list, which defines available emulation platforms for a given board. Fixes #12375. Signed-off-by: Filip Kokosinski <fkokosinski@antmicro.com>
13 lines
212 B
CMake
13 lines
212 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
set(SUPPORTED_EMU_PLATFORMS qemu)
|
|
|
|
set(QEMU_CPU_TYPE_${ARCH} nios2)
|
|
|
|
set(QEMU_FLAGS_${ARCH}
|
|
-machine altera_10m50_zephyr
|
|
-nographic
|
|
)
|
|
|
|
board_set_debugger_ifnset(qemu)
|