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