public: build: fix naming for 32-bit RISCV with double precision float ABI

This commit is contained in:
Alibek Omarov 2023-04-17 19:09:59 +03:00
parent e9da3e2976
commit 84fc8d4281
1 changed files with 1 additions and 1 deletions

View File

@ -193,7 +193,7 @@ const char *Q_ArchitectureStringByID( const int arch, const uint abi, const int
case ARCH_RISCV_FP_SINGLE:
return is64 ? "riscv64f" : "riscv32f";
case ARCH_RISCV_FP_DOUBLE:
return is64 ? "riscv64d" : "riscv64f";
return is64 ? "riscv64d" : "riscv32d";
}
break;
}