mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-28 02:45:21 +00:00
Move all QEMU related defines to the boards and cleanup xtensa platforms which were marked to be QEMU capable by mistake. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
15 lines
282 B
Makefile
15 lines
282 B
Makefile
|
|
EMU_PLATFORM = qemu
|
|
|
|
QEMU_CPU_TYPE_arm = cortex-m3
|
|
QEMU_FLAGS_arm = -cpu $(QEMU_CPU_TYPE_arm) \
|
|
-machine lm3s6965evb -nographic -vga none
|
|
QEMU_arm = qemu-system-arm
|
|
|
|
DEBUG_SCRIPT = qemu.sh
|
|
|
|
debugserver: QEMU_EXTRA_FLAGS += -s -S
|
|
debugserver: run
|
|
|
|
export QEMU_FLAGS_arm QEMU_arm
|