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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
Contents
1. Installation
2. License
3. Feedback
4. About
-------------------------------------------------------------------------------
1. Installation
DOLFIN follows GNU standard, so the installation procedure is simple:
./configure
make
followed by an optional
make install
More information is availabel in the file INSTALL.
A number of options can be given to configure:
o To use g++ instead of c++:
./configure CXX=g++
o To enable optimization:
./configure CXXFLAGS='-03'
o To enable profiling:
./configure CXXFLAGS='-pg'
o To enable extra debugging code (recommended for developers):
./configure --enable-debug
o To disable curses:
./configure --disable-curses
o To install locally (not as root):
./configure --prefix=<dir>
where <dir> is where you want to install, e.g. /home/logg/local
A note for Solaris users: You probably need to disable curses and use gmake:
./configure --disable-curses
gmake
-------------------------------------------------------------------------------
2. Feed back
Feed back, patches, and comments should be sent to
dolfin@fenics.org
------------------------------------------------------------------------------
3. License
DOLFIN is licensed under the GNU GPL Version 2, see http://www.gnu.org.
------------------------------------------------------------------------------
5. About
A hopefully complete list of authors is given in the file AUTHORS.
For more information about DOLFIN, visit
http://www.fenics.org/dolfin/
-------------------------------------------------------------------------------
Chicago
October 2004
|