]> git.lizzy.rs Git - rust.git/blob - miri
update docs, and also use MIRIFLAGS for the test suite
[rust.git] / miri
1 #!/bin/sh
2 set -e
3 USAGE=$(cat <<"EOF"
4   COMMANDS
5
6 ./miri install <flags>:
7 Installs the miri driver and cargo-miri. <flags> are passed to `cargo
8 install`.  Sets up the rpath such that the installed binary should work in any
9 working directory.
10
11 ./miri build <flags>:
12 Just build miri.  <flags> are passed to `cargo build`.
13
14 ./miri check <flags>:
15 Just check miri.  <flags> are passed to `cargo check`.
16
17 ./miri test <flags>:
18 Build miri, set up a sysroot and then run the test suite. <flags> are passed
19 to the final `cargo test` invocation.
20
21 ./miri run <flags>:
22 Build miri, set up a sysroot and then run the driver with the given <flags>.
23
24 All commands also exist in a "-debug" variant (e.g. "./miri run-debug
25 <flags>") which uses debug builds instead of release builds, for faster build
26 times and slower execution times.
27
28   ENVIRONMENT VARIABLES
29
30 MIRI_SYSROOT:
31 If already set, the "sysroot setup" step is skipped.
32
33 CARGO_EXTRA_FLAGS:
34 Pass extra flags to all cargo invocations.
35 EOF
36 )
37
38 ## Preparation
39 TARGET=$(rustc --version --verbose | grep "^host:" | cut -d ' ' -f 2)
40 SYSROOT=$(rustc --print sysroot)
41 LIBDIR=$SYSROOT/lib/rustlib/$TARGET/lib
42 MIRIDIR=$(readlink -e "$(dirname "$0")")
43 if ! test -d "$LIBDIR"; then
44     echo "Something went wrong determining the library dir."
45     echo "I got $LIBDIR but that does not exist."
46     echo "Please report a bug at https://github.com/rust-lang/miri/issues."
47     exit 2
48 fi
49 if [ -z "$CARGO_INCREMENTAL" ]; then
50     # Default CARGO_INCREMENTAL to 1.
51     export CARGO_INCREMENTAL=1
52 fi
53 if [ -z "$CARGO_TARGET_DIR" ]; then
54     # Share target dir between `miri` and `cargo-miri`.
55     export CARGO_TARGET_DIR="$MIRIDIR/target"
56 fi
57 # We set the rpath so that Miri finds the private rustc libraries it needs.
58 # We enable debug-assertions to get tracing.
59 # We enable line-only debuginfo for backtraces.
60 export RUSTFLAGS="-C link-args=-Wl,-rpath,$LIBDIR -C debug-assertions -C debuginfo=1 $RUSTFLAGS"
61
62 ## Helper functions
63
64 # Build a sysroot and set MIRI_SYSROOT to use it.  Arguments are passed to `cargo miri setup`.
65 build_sysroot() {
66     # Build once, for the user to see.
67     cargo run $CARGO_BUILD_FLAGS --manifest-path "$MIRIDIR"/cargo-miri/Cargo.toml -- miri setup "$@"
68     # Call again, to just set env var.
69     export MIRI_SYSROOT="$(cargo run $CARGO_BUILD_FLAGS --manifest-path "$MIRIDIR"/cargo-miri/Cargo.toml -q -- miri setup --print-sysroot "$@")"
70 }
71
72 # Prepare and set MIRI_SYSROOT.  Respects `MIRI_TEST_TARGET` and takes into account
73 # locally built vs. distributed rustc.
74 find_sysroot() {
75     if [ -n "$MIRI_SYSROOT" ]; then
76         # Sysroot already set, use that.
77         return 0
78     fi
79     # We need to build a sysroot.
80     if [ -n "$MIRI_TEST_TARGET" ]; then
81         build_sysroot --target "$MIRI_TEST_TARGET"
82     else
83         build_sysroot
84     fi
85 }
86
87 ## Main
88
89 # Determine command.
90 COMMAND="$1"
91 [ $# -gt 0 ] && shift
92
93 # Determine flags passed to all cargo invocations.
94 # This is a bit more annoying that one would hope due to
95 # <https://github.com/rust-lang/cargo/issues/6992>.
96 case "$COMMAND" in
97 *-debug)
98     CARGO_INSTALL_FLAGS="--target $TARGET --debug $CARGO_EXTRA_FLAGS"
99     CARGO_BUILD_FLAGS="--target $TARGET $CARGO_EXTRA_FLAGS"
100     ;;
101 *)
102     CARGO_INSTALL_FLAGS="--target $TARGET $CARGO_EXTRA_FLAGS"
103     CARGO_BUILD_FLAGS="--target $TARGET --release $CARGO_EXTRA_FLAGS"
104     ;;
105 esac
106
107 # Run command.
108 case "$COMMAND" in
109 install|install-debug)
110     # "--locked" to respect the Cargo.lock file if it exists,
111     # "--offline" to avoid querying the registry (for yanked packages).
112     cargo install $CARGO_INSTALL_FLAGS --path "$MIRIDIR" --force --locked --offline "$@"
113     cargo install $CARGO_INSTALL_FLAGS --path "$MIRIDIR"/cargo-miri --force --locked --offline "$@"
114     ;;
115 check|check-debug)
116     # Check, and let caller control flags.
117     cargo check $CARGO_BUILD_FLAGS --manifest-path "$MIRIDIR"/Cargo.toml "$@"
118     cargo check $CARGO_BUILD_FLAGS --manifest-path "$MIRIDIR"/cargo-miri/Cargo.toml "$@"
119     ;;
120 build|build-debug)
121     # Build, and let caller control flags.
122     cargo build $CARGO_BUILD_FLAGS --manifest-path "$MIRIDIR"/Cargo.toml "$@"
123     cargo build $CARGO_BUILD_FLAGS --manifest-path "$MIRIDIR"/cargo-miri/Cargo.toml "$@"
124     ;;
125 test|test-debug)
126     # First build and get a sysroot.
127     cargo build $CARGO_BUILD_FLAGS
128     find_sysroot
129     # Then test, and let caller control flags.
130     # Only in root project as `cargo-miri` has no tests.
131     exec cargo test $CARGO_BUILD_FLAGS "$@"
132     ;;
133 run|run-debug)
134     # Scan for "--target" to set the "MIRI_TEST_TARGET" env var so
135     # that we set the MIRI_SYSROOT up the right way.
136     if [ -z "$MIRI_TEST_TARGET" ]; then
137         for ARG in "$@"; do
138             if [ "$LAST_ARG" = "--target" ]; then
139                 # Found it!
140                 export MIRI_TEST_TARGET="$ARG"
141                 break
142             fi
143             LAST_ARG="$ARG"
144         done
145     fi
146     # First build and get a sysroot.
147     cargo build $CARGO_BUILD_FLAGS
148     find_sysroot
149     # Then run the actual command.
150     exec cargo run $CARGO_BUILD_FLAGS -- --sysroot "$MIRI_SYSROOT" "$@"
151     ;;
152 *)
153     if [ -n "$COMMAND" ]; then
154       echo "Unknown command: $COMMAND"
155       echo
156     fi
157     echo "$USAGE"
158     exit 1
159 esac