extmod/modplatform: Set MICROPY_PLATFORM_ARCH on riscv platforms.

Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
Damien George 2023-06-21 14:40:33 +10:00
parent e7ae3ad92d
commit 402fdc40fb
1 changed files with 2 additions and 0 deletions

View File

@ -43,6 +43,8 @@
#define MICROPY_PLATFORM_ARCH "x86"
#elif defined(__xtensa__)
#define MICROPY_PLATFORM_ARCH "xtensa"
#elif defined(__riscv)
#define MICROPY_PLATFORM_ARCH "riscv"
#else
#define MICROPY_PLATFORM_ARCH ""
#endif