diff options
| author | Laytan <laytanlaats@hotmail.com> | 2024-09-01 15:51:39 +0200 |
|---|---|---|
| committer | Laytan <laytanlaats@hotmail.com> | 2024-09-01 21:42:47 +0200 |
| commit | 28c643d23f989937c8d530b49a2369e8cd9d39e2 (patch) | |
| tree | fc78a1d9dccc3184c759b54f8e269cc2397857e4 /src/bug_report.cpp | |
| parent | 722b638e2cbefcc1735256ef712cf2b28078a7fb (diff) | |
riscv compiler support
Diffstat (limited to 'src/bug_report.cpp')
| -rw-r--r-- | src/bug_report.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/bug_report.cpp b/src/bug_report.cpp index 916d4016a..5f768f57f 100644 --- a/src/bug_report.cpp +++ b/src/bug_report.cpp @@ -155,7 +155,7 @@ gb_internal void report_windows_product_type(DWORD ProductType) { #endif gb_internal void odin_cpuid(int leaf, int result[]) { - #if defined(GB_CPU_ARM) + #if defined(GB_CPU_ARM) || defined(GB_CPU_RISCV) return; #elif defined(GB_CPU_X86) @@ -225,6 +225,12 @@ gb_internal void report_cpu_info() { gb_printf("ARM\n"); #endif } + #elif defined(GB_CPU_RISCV) + #if defined(GB_ARCH_64_BIT) + gb_printf("RISCV64\n"); + #else + gb_printf("RISCV32\n"); + #endif #else gb_printf("Unknown\n"); #endif |