1
0
forked from GitHub/gf-core

Merge branch 'majestic' of github.com:GrammaticalFramework/gf-core into majestic

This commit is contained in:
krangelov
2021-08-13 19:29:39 +02:00
3 changed files with 99 additions and 41 deletions

27
src/runtime/c/README.md Normal file
View File

@@ -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`