Skip to content

Commit 5cc932a

Browse files
jaisnantedinski
authored andcommitted
Remove Build Configuration from Documentation (rust-lang#776)
1 parent 7bcba5c commit 5cc932a

File tree

2 files changed

+2
-20
lines changed

2 files changed

+2
-20
lines changed

docs/src/dev-documentation.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,6 @@ git remote add fork [email protected]:${USER}/kani.git
5656
git clean -xffd
5757
git submodule foreach --recursive git clean -xffd
5858
git submodule update --init
59-
# Don't forget to re-configure your Kani build:
60-
./configure \
61-
--enable-debug \
62-
--set=llvm.download-ci-llvm=true \
63-
--set=rust.debug-assertions-std=false \
64-
--set=rust.deny-warnings=false
6559
```
6660
```bash
6761
# Done with that PR, time for a new one?
@@ -116,7 +110,7 @@ rustc_private=true
116110
You may also need to install the `rustc-dev` package using rustup
117111

118112
```
119-
rustup toolchain install nightly --component rustc-dev
113+
rustup toolchain install nightly --component rustc-dev
120114
```
121115

122116
## Kani command cheat sheet

docs/src/install-guide.md

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -42,19 +42,7 @@ source $HOME/.cargo/env
4242

4343
## Building and testing Kani
4444

45-
Perform one-time build configuration:
46-
47-
```
48-
./configure \
49-
--enable-debug \
50-
--set=llvm.download-ci-llvm=true \
51-
--set=rust.debug-assertions-std=false \
52-
--set=rust.deny-warnings=false
53-
```
54-
55-
**NOTE: If you skip the above (`llvm.download-ci-llvm=true` specifically), builds may take a long time as all of LLVM would need to be built from scratch.**
56-
57-
Then build kani-compiler executable:
45+
Build kani-compiler executable:
5846

5947
```
6048
( cd src/kani-compiler && cargo build )

0 commit comments

Comments
 (0)