Skip to content

Instantly share code, notes, and snippets.

@AiziChen
Last active November 17, 2022 08:55
Show Gist options
  • Save AiziChen/441cf7bed12e101d5bf0a2db6e551d80 to your computer and use it in GitHub Desktop.
Save AiziChen/441cf7bed12e101d5bf0a2db6e551d80 to your computer and use it in GitHub Desktop.
INSTALL CHEZ-SCHEME ON AARCH64 ARCHITECTCHURE LINUX SYSTEM

INSTALL CHEZ-SCHEME ON AARCH64 ARCHITECTCHURE LINUX SYSTEM

First Step

install gcc-arm-linux-gnueabihf via:

sudo apt install gcc-arm-linux-gnueabihf

Second Step

We need to install armhf version libuuid-dev:armhf and libncurses5w-dev:armhf:

sudo aptitude install libuuid1-dev:armhf

sudo aptitude install libncursesw5-dev:armhf

Third Step

configure chez-project: run this line command:

./configure -m=arm32le --threads --toolprefix=arm-linux-gnueabihf- CFLAGS='-Wa,-mimplicit-it=thumb'

The ended step

make & install it:

make
# for root users
make install
# or for normal users
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment