Added CMake build system, fixed warnings on clang, removed VS solution/projects

This commit is contained in:
Mr-Wiseguy 2024-04-20 21:05:50 -04:00
parent 32841e85b4
commit 0f813247a1
13 changed files with 117 additions and 1062 deletions

View file

@ -232,6 +232,8 @@ bool process_instruction(const RecompPort::Context& context, const RecompPort::C
signed_imm_string = "(int16_t)" + unsigned_imm_string;
reloc_handled = true;
break;
default:
throw std::runtime_error(fmt::format("Unexpected reloc type {} in {}\n", static_cast<int>(reloc_type), func.name));
}
}