Skip to content

Instantly share code, notes, and snippets.

@tzach
Created February 9, 2020 14:45
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tzach/a985ef960501ae44465e6b2e81ea25fc to your computer and use it in GitHub Desktop.
Save tzach/a985ef960501ae44465e6b2e81ea25fc to your computer and use it in GitHub Desktop.
# Installing Guile on Fedoa 30 from source file does not work as documented
# here are the extra steps I did
# Download tar from https://ftp.gnu.org/gnu/guile/
tar -xvf guile-3.0.0.tar.gz
# install missing libs
sudo dnf install libffi-devel
sudo dnf install gc-devel
./configure
make
make install
# add to ~/.bash_profile
export PKG_CONFIG_PATH="/usr/local/lib/pkgconfig"
export LD_LIBRARY_PATH="/usr/local/lib/"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment