We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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.