-
Notifications
You must be signed in to change notification settings - Fork 9
/
README
62 lines (32 loc) · 1.11 KB
/
README
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
Bootstrap
=========
To generate the configure script and related build-tools, run
./build-aux/bootstrap
You are required to have fairly recent versions of the GNU buildtools
(autoconf, automake, libtool) installed.
Building
========
If you want to use libpcl context switching (suggested),
you need to install
libpcl - GNU Portable Coroutine Library, currently v1.12
available at
http://www.xmailserver.org/libpcl.html
If you cannot do a system-wide install, you need to specify the
installation directory of pcl for the configure script.
Run configure with following parameters:
./configure --with-pcl=<pcl_install_dir> --prefix=<your_lpel_install_dir>
and
make
make install
In order to build the LPEL backend for the S-Net runtime system,
you'll need to specify the directories where to find the LPEL library and
includes.
./configure --with-lpel-includes=<lpel_include_dir> \
--with-lpel-libs=<lpel_lib_dir>
Example
-------
I have installed pcl in the local subdirectory of my home directory.
To build LPEL, I use
./configure --with-pcl=$HOME/local/ --prefix=$HOME/local/
make
make install