LLVM 14 removal cleanup

This commit is contained in:
Jeroen van Rijn
2026-06-30 21:12:42 +02:00
parent eb03ed0bbb
commit 40b28a2ded
4 changed files with 9 additions and 178 deletions

View File

@@ -4219,12 +4219,6 @@ int main(int arg_count, char const **arg_ptr) {
gb_printf_err("missing required target feature: \"%.*s\", enable it by setting a different -microarch or explicitly adding it through -target-features\n", LIT(disabled));
gb_exit(1);
}
// NOTE(laytan): some weird errors on LLVM 14 that LLVM 17 fixes.
if (LLVM_VERSION_MAJOR < 17) {
gb_printf_err("Invalid LLVM version %s, RISC-V targets require at least LLVM 17\n", LLVM_VERSION_STRING);
gb_exit(1);
}
}
if (build_context.show_debug_messages) {