extmod/modplatform: Set MICROPY_PLATFORM_ARCH on riscv platforms.

Signed-off-by: Damien George <damien@micropython.org>
pull/11876/head
Damien George 2023-06-21 14:40:33 +10:00
rodzic e7ae3ad92d
commit 402fdc40fb
1 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

@ -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