Skip to content

Commit 788f572

Browse files
authoredMar 27, 2024
Add arch_info for TARGET_RISCV64 (#100341)
1 parent fd22b92 commit 788f572

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎src/native/eventpipe/ep-event-source.c

+2
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ const ep_char8_t* _ep_arch_info = "s390x";
4848
const ep_char8_t* _ep_arch_info = "loongarch64";
4949
#elif defined(TARGET_POWERPC64)
5050
const ep_char8_t* _ep_arch_info = "ppc64le";
51+
#elif defined(TARGET_RISCV64)
52+
const ep_char8_t* _ep_arch_info = "riscv64";
5153
#else
5254
const ep_char8_t* _ep_arch_info = "Unknown";
5355
#endif

0 commit comments

Comments
 (0)
Please sign in to comment.