mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-05-12 20:52:50 -06:00
28 lines
452 B
Markdown
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`
|