2019-05-27 10:51:59 +00:00
|
|
|
#!/bin/sh
|
2019-05-29 07:36:59 +00:00
|
|
|
set -e
|
|
|
|
USAGE=$(cat <<"EOF"
|
|
|
|
COMMANDS
|
|
|
|
|
|
|
|
./miri install <flags>:
|
|
|
|
Installs the miri driver and cargo-miri. <flags> are passed to `cargo
|
|
|
|
install`. Sets up the rpath such that the installed binary should work in any
|
|
|
|
working directory.
|
|
|
|
|
|
|
|
./miri build <flags>:
|
|
|
|
Just build miri. <flags> are passed to `cargo build`.
|
|
|
|
|
|
|
|
./miri test <flags>:
|
|
|
|
Build miri, set up a sysroot and then run the test suite. <flags> are passed
|
|
|
|
to the final `cargo test` invocation.
|
|
|
|
|
|
|
|
./miri run <flags>:
|
|
|
|
Build miri, set up a sysroot and then run the driver with the given <flags>.
|
|
|
|
|
|
|
|
All commands also exist in a "-debug" variant (e.g. "./miri run-debug
|
|
|
|
<flags>") which uses debug builds instead of release builds, for faster build
|
|
|
|
times and slower execution times.
|
|
|
|
|
|
|
|
ENVIRONMENT VARIABLES
|
|
|
|
|
|
|
|
MIRI_SYSROOT:
|
|
|
|
If already set, the "sysroot setup" step is skipped.
|
|
|
|
|
|
|
|
CARGO_EXTRA_FLAGS:
|
|
|
|
Pass extra flags to all cargo invocations.
|
|
|
|
EOF
|
|
|
|
)
|
2019-05-28 17:01:43 +00:00
|
|
|
|
|
|
|
## Preparation
|
2019-05-27 13:02:17 +00:00
|
|
|
# I'd love to use `jq` for parsing the JSON properly, but macOS is totally underequipped for this kind of work.
|
|
|
|
TARGET=$(rustc --print target-spec-json -Z unstable-options | grep llvm-target | cut -d '"' -f 4)
|
2019-05-27 10:51:59 +00:00
|
|
|
SYSROOT=$(rustc --print sysroot)
|
2019-05-27 11:04:18 +00:00
|
|
|
# We set the rpath so that Miri finds the private rustc libraries it needs.
|
|
|
|
# We enable debug-assertions to get tracing.
|
2019-05-27 11:08:47 +00:00
|
|
|
# We enable line-only debuginfo for backtraces.
|
|
|
|
export RUSTFLAGS="-C link-args=-Wl,-rpath,$SYSROOT/lib/rustlib/$TARGET/lib -C debug-assertions -C debuginfo=1"
|
2019-05-27 10:51:59 +00:00
|
|
|
|
2019-05-27 12:40:27 +00:00
|
|
|
## Helper functions
|
2019-05-27 10:51:59 +00:00
|
|
|
|
2019-05-27 12:40:27 +00:00
|
|
|
# Build a sysroot and set MIRI_SYSROOT to use it. Arguments are passed to `cargo miri setup`.
|
|
|
|
build_sysroot() {
|
|
|
|
# Build once, for the user to see.
|
2019-05-28 17:01:43 +00:00
|
|
|
cargo run $CARGO_BUILD_FLAGS --bin cargo-miri -- miri setup "$@"
|
2019-05-27 12:40:27 +00:00
|
|
|
# Call again, to just set env var.
|
2019-05-28 17:01:43 +00:00
|
|
|
eval $(cargo run $CARGO_BUILD_FLAGS -q --bin cargo-miri -- miri setup --env "$@")
|
2019-05-27 12:40:27 +00:00
|
|
|
export MIRI_SYSROOT
|
|
|
|
}
|
2019-05-27 10:51:59 +00:00
|
|
|
|
2019-05-27 12:40:27 +00:00
|
|
|
# Prepare and set MIRI_SYSROOT. Respects `MIRI_TEST_TARGET` and takes into account
|
|
|
|
# locally built vs. distributed rustc.
|
|
|
|
find_sysroot() {
|
2019-05-27 10:51:59 +00:00
|
|
|
# Get ourselves a sysroot
|
|
|
|
if [ -n "$MIRI_SYSROOT" ]; then
|
2019-05-27 12:40:27 +00:00
|
|
|
# Sysroot already set, use that.
|
2019-05-27 10:51:59 +00:00
|
|
|
true
|
2019-05-27 11:04:18 +00:00
|
|
|
elif echo "$SYSROOT" | egrep -q 'build/[^/]+/stage'; then
|
2019-05-27 12:40:27 +00:00
|
|
|
# A local rustc build.
|
|
|
|
if [ -n "$MIRI_TEST_TARGET" ]; then
|
|
|
|
# Foreign targets still need a build. Use the rustc sources.
|
|
|
|
export XARGO_RUST_SRC="$SYSROOT/../../../src"
|
|
|
|
build_sysroot --target "$MIRI_TEST_TARGET"
|
|
|
|
else
|
2019-05-27 13:05:55 +00:00
|
|
|
# Assume we have a proper host libstd in $SYSROOT.
|
|
|
|
true
|
2019-05-27 12:40:27 +00:00
|
|
|
fi
|
2019-05-27 10:51:59 +00:00
|
|
|
else
|
2019-05-27 13:35:48 +00:00
|
|
|
# A normal toolchain. We have to build a sysroot either way.
|
2019-05-27 12:40:27 +00:00
|
|
|
if [ -n "$MIRI_TEST_TARGET" ]; then
|
|
|
|
build_sysroot --target "$MIRI_TEST_TARGET"
|
|
|
|
else
|
|
|
|
build_sysroot
|
|
|
|
fi
|
2019-05-27 10:51:59 +00:00
|
|
|
fi
|
2019-05-27 12:40:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
## Main
|
|
|
|
|
2019-05-28 17:01:43 +00:00
|
|
|
# Determine command.
|
2019-05-27 12:40:27 +00:00
|
|
|
COMMAND="$1"
|
|
|
|
shift
|
2019-05-27 10:51:59 +00:00
|
|
|
|
2019-05-28 17:01:43 +00:00
|
|
|
# Determine flags passed to all cargo invocations.
|
2019-05-28 17:04:31 +00:00
|
|
|
# This is a bit more annoying that one would hope due to
|
|
|
|
# <https://github.com/rust-lang/cargo/issues/6992>.
|
2019-05-27 12:40:27 +00:00
|
|
|
case "$COMMAND" in
|
2019-05-28 17:01:43 +00:00
|
|
|
*-debug)
|
|
|
|
CARGO_INSTALL_FLAGS="--debug $CARGO_EXTRA_FLAGS"
|
|
|
|
CARGO_BUILD_FLAGS="$CARGO_EXTRA_FLAGS"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
CARGO_INSTALL_FLAGS="$CARGO_EXTRA_FLAGS"
|
|
|
|
CARGO_BUILD_FLAGS="--release $CARGO_EXTRA_FLAGS"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# Run command.
|
|
|
|
case "$COMMAND" in
|
|
|
|
install|install-debug)
|
2019-05-27 12:40:27 +00:00
|
|
|
# "--locked" to respect the Cargo.lock file if it exists,
|
|
|
|
# "--offline" to avoid querying the registry (for yanked packages).
|
2019-05-28 17:20:01 +00:00
|
|
|
exec cargo install $CARGO_INSTALL_FLAGS --path "$(dirname "$0")" --force --locked --offline "$@"
|
2019-05-27 12:40:27 +00:00
|
|
|
;;
|
2019-05-28 17:01:43 +00:00
|
|
|
build|build-debug)
|
2019-05-27 12:40:27 +00:00
|
|
|
# Build, and let caller control flags.
|
2019-05-28 17:01:43 +00:00
|
|
|
exec cargo build $CARGO_BUILD_FLAGS "$@"
|
|
|
|
;;
|
|
|
|
test|test-debug)
|
|
|
|
# First build and get a sysroot.
|
|
|
|
cargo build $CARGO_BUILD_FLAGS
|
|
|
|
find_sysroot
|
|
|
|
# Then test, and let caller control flags.
|
|
|
|
exec cargo test $CARGO_BUILD_FLAGS "$@"
|
2019-05-27 12:40:27 +00:00
|
|
|
;;
|
2019-05-28 17:01:43 +00:00
|
|
|
run|run-debug)
|
|
|
|
# Scan for "--target" to set the "MIRI_TEST_TARGET" env var so
|
2019-05-27 12:40:27 +00:00
|
|
|
# that we set the MIRI_SYSROOT up the right way.
|
2019-05-28 17:01:43 +00:00
|
|
|
if [ -z "$MIRI_TEST_TARGET" ]; then
|
2019-05-27 12:40:27 +00:00
|
|
|
for ARG in "$@"; do
|
|
|
|
if [ "$LAST_ARG" = "--target" ]; then
|
|
|
|
# Found it!
|
|
|
|
export MIRI_TEST_TARGET="$ARG"
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
LAST_ARG="$ARG"
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
# First build and get a sysroot.
|
2019-05-28 17:01:43 +00:00
|
|
|
cargo build $CARGO_BUILD_FLAGS
|
2019-05-27 12:40:27 +00:00
|
|
|
find_sysroot
|
|
|
|
# Then run the actual command.
|
2019-05-28 17:01:43 +00:00
|
|
|
exec cargo run $CARGO_BUILD_FLAGS "$@"
|
2019-05-27 10:51:59 +00:00
|
|
|
;;
|
2019-05-29 07:36:59 +00:00
|
|
|
*)
|
|
|
|
echo "Unknown command: $COMMAND"
|
|
|
|
echo
|
|
|
|
echo "$USAGE"
|
|
|
|
exit 1
|
2019-05-27 10:51:59 +00:00
|
|
|
esac
|