Improved OpenBSD support (#2317)

* add openbsd support, compiles and passses all tests
* fix backtrace
* gh actions should include openbsd artifacts
This commit is contained in:
LowByteFox
2025-07-22 15:15:20 +02:00
committed by GitHub
parent b45c337515
commit 5c82747970
12 changed files with 298 additions and 9 deletions

View File

@@ -411,6 +411,10 @@ fn void test_file(Path file_path)
// Construct the compile line
List{String} cmdline;
cmdline.push(compiler_path.str_view());
$if env::OPENBSD:
cmdline.push("--max-mem");
cmdline.push("128");
$endif
cmdline.push("compile-only");
cmdline.push("--test");
if (stdlib)