Skip to content

Commit 7d87e3c

Browse files
committed
wrap long lines
1 parent a2ad0a8 commit 7d87e3c

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

src/how-to-build-and-run.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -166,11 +166,12 @@ LLVM version: 4.0
166166
There are two workflows that are useful for faster builders of the
167167
compiler.
168168

169-
**Check, check, and check again.** The first workflow, which is useful when doing
170-
simple refactorings, is to run `./x.py check` continuously. Here you
171-
are just checking that the compiler can **build**, but often that is
172-
all you need (e.g., when renaming a method). You can then run `./x.py build`
173-
when you acqtually need to run tests.
169+
**Check, check, and check again.** The first workflow, which is useful
170+
when doing simple refactorings, is to run `./x.py check`
171+
continuously. Here you are just checking that the compiler can
172+
**build**, but often that is all you need (e.g., when renaming a
173+
method). You can then run `./x.py build` when you acqtually need to
174+
run tests.
174175

175176
In fact, it is eomtimes useful to put off tests even when you are not
176177
100% sure the code will work. You can then keep building up
@@ -192,7 +193,8 @@ don't work (but that is easily detected and fixed).
192193
The sequence of commands you want is as follows:
193194

194195
- Initial build: `./x.py build -i --stage 1 src/libstd`
195-
- As [documented above](#command), this will build a functional stage1 compiler
196+
- As [documented above](#command), this will build a functional
197+
stage1 compiler
196198
- Subsequent builds: `./x.py build -i --stage 1 src/libstd --keep-stage 1`
197199
- Note that we added the `--keep-stage 1` flag here
198200

0 commit comments

Comments
 (0)