Skip to content

Commit ff63d78

Browse files
committed
minor build++
1 parent 2a99fae commit ff63d78

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

content/tutorial/first-build.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -341,9 +341,12 @@ Building binaries with SBCL is done with the function
341341
`sb-ext:save-lisp-and-die` (it lives in the `sb-ext` SBCL module, that
342342
is available by default).
343343

344-
Other implementations don't define the exact same function, that's why
345-
we need a compatibility layer, which is provided by ASDF. We show this
346-
method in the Cookbook and later in this guide.
344+
Other implementations don't define the exact same function, for
345+
instance on Clozure CL the function is `ccl:save-application`. That's
346+
why we'll want a compatibility layer to write a portable script across
347+
implementations. It is as always provided by ASDF with
348+
`uiop:dump-image` and also with a system declaration in the .asd
349+
files.
347350

348351
SBCL binaries are portable from and to the same operating system:
349352
build on GNU/Linux, run on GNU/Linux. Or build on a CI system on the 3

0 commit comments

Comments
 (0)