GP-5404: sigh

This commit is contained in:
d-millar
2025-02-21 15:04:06 +00:00
parent 97c8b3975c
commit 5e7af583cc

View File

@@ -92,11 +92,18 @@ x86_compiler_map = {
'Cygwin': 'windows',
}
riscv_compiler_map = {
'GNU/Linux': 'gcc',
'Cygwin': 'gcc',
}
compiler_map = {
'DATA:BE:64:default': data64_compiler_map,
'DATA:LE:64:default': data64_compiler_map,
'x86:LE:32:default': x86_compiler_map,
'x86:LE:64:default': x86_compiler_map,
'RISCV:LE:32:default': riscv_compiler_map,
'RISCV:LE:64:default': riscv_compiler_map,
}