-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathINSTALL
More file actions
31 lines (24 loc) · 779 Bytes
/
INSTALL
File metadata and controls
31 lines (24 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Prerequisites
- Gambit Scheme, versions 4.8 or greater
- a C compiler like GCC
- autoconf, automake, make
- pkg-config
Building
Run the following:
./autogen.sh
./configure --prefix=$myprefix --enable-pdf
make
make install
Verified builds on
- Various Linux distributions
- OS X
If installed in a non-standard (/usr) location,
pkg-config may be used as follows
"export PKG_CONFIG_PATH=$myprefix/lib/pkgconfig/"
run "pkg-config --cflags libbug" to get the location
of libbug#.scm, libbug-macros.scm, and libbug.c
run "pkg-config --libs libbug" to get the base name
for the shared-library/loadable library. A ".so"
needs to be suffixed to the command to get the shared
library, and a ".o1" needs to be suffixed to get the
loadable library.