Skip to content

Commit d948776

Browse files
committed
More markup fixes
1 parent 1565514 commit d948776

File tree

1 file changed

+14
-5
lines changed

1 file changed

+14
-5
lines changed

BUILDING.md

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,17 +48,20 @@ Setting up a build environment
4848
------------------------------
4949

5050
1. Create a base directory and change to it
51-
51+
```
5252
mkdir cmucl ; cd cmucl
53-
53+
```
5454
2. Fetch the sources and put them into the base directory
5555
```
5656
tar xzf /tmp/cmucl-source.tar.gz
5757
```
58+
5859
or, if you want to use the git sources directly:
60+
5961
```
6062
git clone https://gitlab.common-lisp.net/cmucl/cmucl.git
6163
```
64+
6265
Whatever you do, the sources must be in a directory named src
6366
inside the base directory. Since the build tools keep all
6467
generated files in separate target directories, the src directory
@@ -81,7 +84,9 @@ quick guide.
8184
Use this to build from a version of CMUCL that is very close to the
8285
sources you are trying to build now:
8386

87+
```
8488
bin/build.sh -C "" -o "<name-of-old-lisp> <options-to-lisp>"
89+
```
8590

8691
This will build CMUCL 3 times, each time with the result of the
8792
previous build. The last time, the additional libraries like CLX,
@@ -100,7 +105,9 @@ quick guide.
100105

101106
For these, you can use this:
102107

108+
```
103109
bin/build.sh -C "" -o "<old-lisp>" -B boot1.lisp -B boot2.lisp
110+
```
104111

105112
The bootstrap files listed with the -B option (as many as needed)
106113
are loaded in order, so be sure to get them right.
@@ -121,9 +128,9 @@ file date of a boot file is later than the version of CMUCL you are
121128
building from, then you need to use b) or c) above. You may need to
122129
read the bootfiles for additional instructions, if any.
123130

124-
If there are no bootfiles, then you can use a) above.
131+
If there are no bootfiles, then you can use 1. above.
125132

126-
The build.sh script supports other options, and bin/build.sh -?
133+
The `build.sh` script supports other options, and `bin/build.sh -?`
127134
will give a quick summary. Read bin/build.sh for more
128135
information.
129136

@@ -373,10 +380,12 @@ Overview of the included build scripts
373380

374381
The remaining arguments used to create the name of the tarfiles. The
375382
names will have the form:
383+
376384
```
377385
cmucl-<version>-<arch>-<os>.tar.bz2
378386
cmucl-<version>-<arch>-<os>.extras.tar.bz2
379387
```
388+
380389
Of course, the "bz2" will be "gz" if you specified gzip compression
381390
instead of bzip.
382391

@@ -695,4 +704,4 @@ In particular steps 3, 4, and 5 can be combined into one by using the
695704
-c, -r, and -l options for cross-build-world.sh. The -c option cleans
696705
out the targe and cross directories; -r does step 4; and -l does step
697706
5.
698-
===============
707+

0 commit comments

Comments
 (0)