mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
10 lines
200 B
Batchfile
10 lines
200 B
Batchfile
@echo off
|
|
echo [BUILD] build system >&2
|
|
mkdir build 2>nul
|
|
rustc build_system/main.rs -o build\y.exe -Cdebuginfo=1 --edition 2021 || goto :error
|
|
build\y.exe %* || goto :error
|
|
goto :EOF
|
|
|
|
:error
|
|
exit /b
|