mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user