mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +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 "$@"
|