mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 21:32:03 +00:00
7 lines
144 B
Bash
Executable File
7 lines
144 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
echo "[BUILD] build system" 1>&2
|
|
rustc build_system/main.rs -o y.bin -Cdebuginfo=1 --edition 2021
|
|
exec ./y.bin "$@"
|