blob: d4f1fd8402c1139c915c33578fa68871e7b3037e (
plain)
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
|
<html><head><title>Funtools FAQ: Installing</title></head>
<ol>
<li> <a name="faq1"><b>Where can I get funtools?</b><p>
Funtools is available at:
<a href="http://hea-www.harvard.edu/saord/funtools">http://hea-www.harvard.edu/saord/funtools</a>.
<li> <a name="faq2"><b>How do I build funtools?</b><p>
<P>
<BLOCKQUOTE><CODE>
<PRE>
./configure --prefix="install_root" # site-specific configuration
make # build the software
make install # install it
make clean # clean up unneeded temp files
</PRE>
</CODE></BLOCKQUOTE>
<li><a name=faq3"><b>What secondary build options might be useful?</b></a>
<P>
<BLOCKQUOTE><CODE>
<PRE>
# specify root dir to install funtools executables, libraries, man pages, etc.
# default is to install in /usr/local
configure --prefix="install_root"
# create funtools as a shared library
configure --enable-shared=yes
# create funtools as a shared library and use it to link funtools itself
configure --enable-shared=link
# gcc: enable support for files larger than 2 Gb
configure CFLAGS="-D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64"
</PRE>
</CODE></BLOCKQUOTE>
</ol>
|