From 4fd70bc445146ff10f069281487b3095499bb42e Mon Sep 17 00:00:00 2001 From: "John J. Camilleri" Date: Fri, 13 Aug 2021 10:47:06 +0200 Subject: [PATCH] Add basic installation instructions --- src/runtime/c/README.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/runtime/c/README.md diff --git a/src/runtime/c/README.md b/src/runtime/c/README.md new file mode 100644 index 000000000..be9d8d347 --- /dev/null +++ b/src/runtime/c/README.md @@ -0,0 +1,27 @@ +# "Majestic" C Runtime + +## Requirements + +Required system packages (Debian/Ubuntu): +``` +autoconf +automake +libtool +make +g++ +``` + +## Installation + +Installing the runtime (puts libraries in `/usr/local/lib`): +``` +autoreconf -i +./configure +make +make install +``` + +## Using + +- Compiling GF with this runtime will require flag `--extra-lib-dirs=/usr/local/lib`. +- Running GF with this runtime will require environment variable `LD_LIBRARY_PATH=/usr/local/lib`