diff options
| author | Inari Listenmaa <inari.listenmaa@gmail.com> | 2021-07-14 16:44:44 +0800 |
|---|---|---|
| committer | Inari Listenmaa <inari.listenmaa@gmail.com> | 2021-07-14 16:44:44 +0800 |
| commit | a1594e6a6950665a691529a15da7f440335f6e00 (patch) | |
| tree | 223e74b7231dacecd7185ed20e252ee165ffcb12 /doc/gf-developers.t2t | |
| parent | 06e0a986d13f3aa744a4b344586cf22cc337a5ff (diff) | |
updated doc with instructions for C runtime for ubuntu and fedora
Diffstat (limited to 'doc/gf-developers.t2t')
| -rw-r--r-- | doc/gf-developers.t2t | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/doc/gf-developers.t2t b/doc/gf-developers.t2t index 9e758cd48..c62cc5e04 100644 --- a/doc/gf-developers.t2t +++ b/doc/gf-developers.t2t @@ -394,13 +394,15 @@ extra-lib-dirs: ``` First you will need to install the following libraries if not already installed: +autoconf, automake, libtool, make + +On Ubuntu ``apt-get install autotools-dev`` +On Fedora ``dnf install autoconf automake libtool`` -``` -apt-get install -``` and then run ``stack install``, also from the top directory. +If you get an error ``error while loading shared libraries`` when trying to run gf with C runtime, remember to declare your LD_LIBRARY_PATH. Add ``export LD_LIBRARY_PATH="/usr/local/lib"`` to either your .bashrc or .profile. You should now be able to start GF with C runtime. === 3. Use GF server mode with C runtime === |
