Files
gf-core/src/runtime/c/README.md
2021-08-13 10:47:06 +02:00

28 lines
452 B
Markdown

# "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`