GP-0 Corrected arch compiler mapping

This commit is contained in:
ghidra1 2024-06-06 20:27:18 -04:00
parent 1e4882d82d
commit b54a7e85b0

View file

@ -37,20 +37,21 @@ x86_compiler_map = {
'Cygwin': 'windows',
}
arm_compiler_map = {
aarch64_compiler_map = {
'windows': 'default',
}
arm_compiler_map = {
'windows': 'windows',
}
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,
'AARCH64:BE:64:v8A': arm_compiler_map,
'AARCH64:LE:64:AppleSilicon': arm_compiler_map,
'AARCH64:LE:64:v8A': arm_compiler_map,
'ARM:BE:64:v8': arm_compiler_map,
'ARM:LE:64:v8': arm_compiler_map,
'AARCH64:LE:64:AppleSilicon': aarch64_compiler_map,
'ARM:LE:32:v8': arm_compiler_map,
}