summaryrefslogtreecommitdiffstats
path: root/compiler/rustc_codegen_cranelift/y.ps1
blob: 02ef0fcbd50f1efe6293307b245ad62ee005ee55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
$ErrorActionPreference = "Stop"

$host.ui.WriteErrorLine("[BUILD] build system")
New-Item -ItemType Directory -Force -Path build | Out-Null
& rustc build_system/main.rs -o build\y.exe -Cdebuginfo=1 --edition 2021
if ($LASTEXITCODE -ne 0) {
    exit $LASTEXITCODE
}
& build\y.exe $args
if ($LASTEXITCODE -ne 0) {
    exit $LASTEXITCODE
}