Skip to content

OS Installation Notes

R. Matthew Emerson edited this page Jul 18, 2023 · 3 revisions

Linux

On Ubuntu 22.04, to build and run the 32-bit lisp, install the necessary 32-bit binaries and libraries as follows:

# dpkg --add-architecture i386
# apt update
# apt install gcc:i386 make m4

I always have to figure this out every time I install a new Linux box.

Addition:

That doesn't actually do the trick. I got the error

/usr/include/features-time64.h:20:10: fatal error: bits/wordsize.h: No such file or directory

when trying to build the 64-bit lisp. Doing

apt install gcc-multilib

seems to fix the trouble.