commit | author | age
|
ac9fa6
|
1 |
TRISURF NG |
SP |
2 |
========== |
|
3 |
|
|
4 |
|
|
5 |
1. Instalation |
|
6 |
-------------- |
|
7 |
|
58fd63
|
8 |
To compile the program, user must have ``automake``, and ``gcc`` tools installed on the computer. |
ac9fa6
|
9 |
|
08d2f8
|
10 |
Required C libraries are: |
ac9fa6
|
11 |
* libconfuse |
SP |
12 |
* libgsl |
|
13 |
* libxml2 |
720bd4
|
14 |
* zlib |
ac9fa6
|
15 |
|
08d2f8
|
16 |
and python libraries for running tsmgr: |
SP |
17 |
* tabulate |
|
18 |
* psutil |
|
19 |
* configobj |
|
20 |
|
ac9fa6
|
21 |
On Debian based systems, install prerequisities by typing the following command in the command line: |
SP |
22 |
|
08d2f8
|
23 |
``sudo apt-get install libconfuse-dev libgsl0-dev libxml2-dev zlib1g-dev automake gcc python3-psutil python3 python3-pip`` |
SP |
24 |
``sudo pip3 install tabulate configobj`` |
ac9fa6
|
25 |
|
SP |
26 |
Move to the project root directory and compile with: |
|
27 |
|
58fd63
|
28 |
``./configure`` |
9a658d
|
29 |
|
58fd63
|
30 |
``make`` |
9a658d
|
31 |
|
58fd63
|
32 |
``make install`` |
ac9fa6
|
33 |
|
SP |
34 |
If you are experiencing difficulties due to different automake versions, proceed with the longer procedure: |
|
35 |
|
58fd63
|
36 |
``aclocal`` |
9a658d
|
37 |
|
58fd63
|
38 |
``autoheader`` |
9a658d
|
39 |
|
58fd63
|
40 |
``automake -ac`` |
9a658d
|
41 |
|
58fd63
|
42 |
``autoconf`` |
9a658d
|
43 |
|
815f19
|
44 |
``autoreconf -if`` |
SP |
45 |
|
58fd63
|
46 |
``./configure`` |
9a658d
|
47 |
|
58fd63
|
48 |
``make`` |
9a658d
|
49 |
|
58fd63
|
50 |
``make install`` |
ac9fa6
|
51 |
|
SP |
52 |
|
d84529
|
53 |
This procedure can be done automatically by calling the build.sh script. |
SP |
54 |
|
ac9fa6
|
55 |
2. Use |
SP |
56 |
------ |
|
57 |
|
58fd63
|
58 |
Prepare tape file, storing the definition for the simulation. You can use the sample tape file in the ``src/`` directory as a template for your simulation. |
ac9fa6
|
59 |
|
58fd63
|
60 |
Run simulations with ``trisurf-ng --force-from-tape`` for initial run, or ``trisurf-ng`` for continuing aborted simulations. |
ac9fa6
|
61 |
|
7d44c8
|
62 |
======== LIBRARY VERSION ================ |
ac9fa6
|
63 |
|
7d44c8
|
64 |
THis line seemed to fixed everything: |
SP |
65 |
libtoolize --force |
333af0
|
66 |
|
SP |
67 |
|
|
68 |
======= STATICALLY LINKING ============== |
|
69 |
./configure --enable-static LDFLAGS=-static |
|
70 |
|