# HG changeset patch # User Steve Losh # Date 1604339936 18000 # Node ID b9d133e21680072cc67b9a6c8775a93dd301316e # Parent 72dc9b82f97dd977b6ed505eb928caf8a1231d36 Update diff -r 72dc9b82f97d -r b9d133e21680 README.markdown --- a/README.markdown Mon Oct 26 21:33:18 2020 -0400 +++ b/README.markdown Mon Nov 02 12:58:56 2020 -0500 @@ -1546,3 +1546,16 @@ I'm calling `bytes`, not `str`, what the fuck are you talking about, Python? Eventually I found `bytes(foo.encode('utf-8'))` which will work in both. I'm glad I don't use this language any more. + +# November 2020 + +## 2020-11-02 + +Had to update SBCL today and wanted to parallelize the build to make it run +a bit faster. I remember Rainer Joswig tweeting about this but can't find the +tweet, Googling for `SBCL parallel` is useless, there's no documentation of the +magic env vars, and I can't find them by scanning `make-config.sh` or `make.sh` +so I eventually gave up and asked in `#sbcl`. The magical incantation to +parallelize SBCL with multiple jobs is: + + SBCL_MAKE_PARALLEL=12 SBCL_MAKE_JOBS=-j12 ./make.sh