We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37c45b9 commit 641d77fCopy full SHA for 641d77f
core/iwasm/compilation/aot_llvm.c
@@ -1087,14 +1087,22 @@ static ArchItem valid_archs[] = {
1087
{ "thumbv8r", true },
1088
{ "thumbv8m.base", true },
1089
{ "thumbv8m.main", true },
1090
- { "thumbv8.1m.main", true }
+ { "thumbv8.1m.main", true },
1091
+ { "riscv32", true},
1092
+ { "riscv64", true}
1093
};
1094
1095
static const char *valid_abis[] = {
1096
"gnu",
1097
"eabi",
1098
"gnueabihf",
- "msvc"
1099
+ "msvc",
1100
+ "ilp32",
1101
+ "ilp32f",
1102
+ "ilp32d",
1103
+ "lp64",
1104
+ "lp64f",
1105
+ "lp64d"
1106
1107
1108
static void
0 commit comments