Skip to content

Commit ab91570

Browse files
committed
cmake: emu: qemu: Add binary suffix for or1k architecture
The Qemu emulator executable for the OpenRISC 1000 (or1k) architecture is named qemu-or1k. This patch adds this information to the qemu architecture suffix list. Signed-off-by: Joel Holdsworth <jholdsworth@nvidia.com>
1 parent 352c97f commit ab91570

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

cmake/emu/qemu.cmake

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ elseif("${ARCH}" STREQUAL "mips")
88
else()
99
set_ifndef(QEMU_binary_suffix mipsel)
1010
endif()
11+
elseif("${ARCH}" STREQUAL "openrisc")
12+
set_ifndef(QEMU_binary_suffix or1k)
1113
elseif(DEFINED QEMU_ARCH)
1214
set_ifndef(QEMU_binary_suffix ${QEMU_ARCH})
1315
else()

0 commit comments

Comments
 (0)