1@rem Copyright 2024 The Fuchsia Authors 2 3@rem Licensed under a BSD-style license <LICENSE-BSD>, Apache License, Version 2.0 4@rem <LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0>, or the MIT 5@rem license <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your option. 6@rem This file may not be copied, modified, or distributed except according to 7@rem those terms. 8 9@rem Build `cargo-zerocopy` without any RUSTFLAGS set in the environment 10@set TEMP_RUSTFLAGS=%RUSTFLAGS% 11@set RUSTFLAGS= 12@cargo +stable build --manifest-path tools/Cargo.toml -p cargo-zerocopy -q 13@set RUSTFLAGS=%TEMP_RUSTFLAGS% 14@set TEMP_RUSTFLAGS= 15@rem Thin wrapper around the `cargo-zerocopy` binary in `tools/cargo-zerocopy` 16@tools\target\debug\cargo-zerocopy %* 17