2020-10-27 13:21:59 +00:00
|
|
|
#!/bin/bash
|
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`.
|
|
|
|
|
2020-03-21 16:43:28 +00:00
|
|
|
./miri check <flags>:
|
|
|
|
Just check miri. <flags> are passed to `cargo check`.
|
|
|
|
|
2019-05-29 07:36:59 +00:00
|
|
|
./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-29 07:39:49 +00:00
|
|
|
TARGET=$(rustc --version --verbose | grep "^host:" | cut -d ' ' -f 2)
|
2019-05-27 10:51:59 +00:00
|
|
|
SYSROOT=$(rustc --print sysroot)
|
2019-05-29 07:39:49 +00:00
|
|
|
LIBDIR=$SYSROOT/lib/rustlib/$TARGET/lib
|
2021-12-20 22:14:17 +00:00
|
|
|
# macOS does not have a useful readlink/realpath so we have to use Python instead...
|
|
|
|
MIRIDIR=$(dirname "$(python -c 'import os, sys; print(os.path.realpath(sys.argv[1]))' "$0")")
|
2019-05-29 07:39:49 +00:00
|
|
|
if ! test -d "$LIBDIR"; then
|
|
|
|
echo "Something went wrong determining the library dir."
|
|
|
|
echo "I got $LIBDIR but that does not exist."
|
|
|
|
echo "Please report a bug at https://github.com/rust-lang/miri/issues."
|
|
|
|
exit 2
|
|
|
|
fi
|
2020-04-02 07:49:48 +00:00
|
|
|
if [ -z "$CARGO_INCREMENTAL" ]; then
|
|
|
|
# Default CARGO_INCREMENTAL to 1.
|
|
|
|
export CARGO_INCREMENTAL=1
|
|
|
|
fi
|
2020-05-21 12:18:18 +00:00
|
|
|
if [ -z "$CARGO_TARGET_DIR" ]; then
|
|
|
|
# Share target dir between `miri` and `cargo-miri`.
|
2020-09-06 17:28:29 +00:00
|
|
|
export CARGO_TARGET_DIR="$MIRIDIR/target"
|
2020-05-21 12:18:18 +00:00
|
|
|
fi
|
2020-05-21 09:23:04 +00:00
|
|
|
# We set the rpath so that Miri finds the private rustc libraries it needs.
|
|
|
|
# We enable debug-assertions to get tracing.
|
|
|
|
# We enable line-only debuginfo for backtraces.
|
|
|
|
export RUSTFLAGS="-C link-args=-Wl,-rpath,$LIBDIR -C debug-assertions -C debuginfo=1 $RUSTFLAGS"
|
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.
|
2020-09-06 17:28:29 +00:00
|
|
|
cargo run $CARGO_BUILD_FLAGS --manifest-path "$MIRIDIR"/cargo-miri/Cargo.toml -- miri setup "$@"
|
2019-05-27 12:40:27 +00:00
|
|
|
# Call again, to just set env var.
|
2020-09-06 17:28:29 +00:00
|
|
|
export MIRI_SYSROOT="$(cargo run $CARGO_BUILD_FLAGS --manifest-path "$MIRIDIR"/cargo-miri/Cargo.toml -q -- miri setup --print-sysroot "$@")"
|
2019-05-27 12:40:27 +00:00
|
|
|
}
|
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
|
|
|
if [ -n "$MIRI_SYSROOT" ]; then
|
2019-05-27 12:40:27 +00:00
|
|
|
# Sysroot already set, use that.
|
2019-08-09 09:29:10 +00:00
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
# We need to build a sysroot.
|
|
|
|
if [ -n "$MIRI_TEST_TARGET" ]; then
|
|
|
|
build_sysroot --target "$MIRI_TEST_TARGET"
|
2019-05-27 10:51:59 +00:00
|
|
|
else
|
2019-08-09 09:29:10 +00:00
|
|
|
build_sysroot
|
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"
|
2019-06-28 01:46:24 +00:00
|
|
|
[ $# -gt 0 ] && 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)
|
2020-07-03 09:18:44 +00:00
|
|
|
CARGO_INSTALL_FLAGS="--target $TARGET --debug $CARGO_EXTRA_FLAGS"
|
|
|
|
CARGO_BUILD_FLAGS="--target $TARGET $CARGO_EXTRA_FLAGS"
|
2019-05-28 17:01:43 +00:00
|
|
|
;;
|
|
|
|
*)
|
2020-07-03 09:18:44 +00:00
|
|
|
CARGO_INSTALL_FLAGS="--target $TARGET $CARGO_EXTRA_FLAGS"
|
|
|
|
CARGO_BUILD_FLAGS="--target $TARGET --release $CARGO_EXTRA_FLAGS"
|
2019-05-28 17:01:43 +00:00
|
|
|
;;
|
|
|
|
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).
|
2020-09-06 17:28:29 +00:00
|
|
|
cargo install $CARGO_INSTALL_FLAGS --path "$MIRIDIR" --force --locked --offline "$@"
|
|
|
|
cargo install $CARGO_INSTALL_FLAGS --path "$MIRIDIR"/cargo-miri --force --locked --offline "$@"
|
2019-05-27 12:40:27 +00:00
|
|
|
;;
|
2020-03-21 16:43:28 +00:00
|
|
|
check|check-debug)
|
|
|
|
# Check, and let caller control flags.
|
2020-09-06 17:28:29 +00:00
|
|
|
cargo check $CARGO_BUILD_FLAGS --manifest-path "$MIRIDIR"/Cargo.toml "$@"
|
|
|
|
cargo check $CARGO_BUILD_FLAGS --manifest-path "$MIRIDIR"/cargo-miri/Cargo.toml "$@"
|
2020-03-21 16:43:28 +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.
|
2020-09-06 17:28:29 +00:00
|
|
|
cargo build $CARGO_BUILD_FLAGS --manifest-path "$MIRIDIR"/Cargo.toml "$@"
|
|
|
|
cargo build $CARGO_BUILD_FLAGS --manifest-path "$MIRIDIR"/cargo-miri/Cargo.toml "$@"
|
2019-05-28 17:01:43 +00:00
|
|
|
;;
|
|
|
|
test|test-debug)
|
|
|
|
# First build and get a sysroot.
|
|
|
|
cargo build $CARGO_BUILD_FLAGS
|
|
|
|
find_sysroot
|
|
|
|
# Then test, and let caller control flags.
|
2020-05-21 12:18:18 +00:00
|
|
|
# Only in root project as `cargo-miri` has no tests.
|
2019-05-28 17:01:43 +00:00
|
|
|
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-06-09 15:10:04 +00:00
|
|
|
exec cargo run $CARGO_BUILD_FLAGS -- --sysroot "$MIRI_SYSROOT" "$@"
|
2019-05-27 10:51:59 +00:00
|
|
|
;;
|
2019-05-29 07:36:59 +00:00
|
|
|
*)
|
2020-04-06 07:34:27 +00:00
|
|
|
if [ -n "$COMMAND" ]; then
|
|
|
|
echo "Unknown command: $COMMAND"
|
|
|
|
echo
|
|
|
|
fi
|
2019-05-29 07:36:59 +00:00
|
|
|
echo "$USAGE"
|
|
|
|
exit 1
|
2019-05-27 10:51:59 +00:00
|
|
|
esac
|