File: faq1.html

package info (click to toggle)
funtools 1.4.8-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 15,004 kB
  • sloc: ansic: 89,502; sh: 10,714; lex: 4,613; asm: 3,281; ada: 1,681; makefile: 1,468; pascal: 1,089; cpp: 1,001; cs: 879; perl: 161; python: 119; yacc: 64; sed: 38; csh: 10; tcl: 9
file content (39 lines) | stat: -rw-r--r-- 1,151 bytes parent folder | download | duplicates (7)
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>