mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-20 20:16:26 +02:00
* Initial: use Isolate for isolation * Continue: use Isolate for isolation * Bug fixes * timeout is wall-time for backward compatibility * Documentation, signal names, reported time in ms * Report memory usage in bytes * Add privileged flags where needed * Remove tmpfs * Remove tmpfs * Fix package installation * Fix path, fix Zig: CRLF -> LF
6 lines
193 B
Bash
6 lines
193 B
Bash
#!/usr/bin/env bash
|
|
|
|
# optimizing for small programs
|
|
rename 's/$/\.zig/' "$@" # Add .zig extension
|
|
|
|
zig build-exe -O ReleaseSafe --color off --cache-dir . --global-cache-dir . --name out *.zig
|