summaryrefslogtreecommitdiffstats
path: root/funtools/faq/faq1.html
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2016-10-27 17:38:41 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2016-10-27 17:38:41 (GMT)
commit5b44fb0d6530c4ff66a446afb69933aa8ffd014f (patch)
treee059f66d1f612e21fe9d83f9620c8715530353ec /funtools/faq/faq1.html
parentda2e3d212171bbe64c1af39114fd067308656990 (diff)
parent23c7930d27fe11c4655e1291a07a821dbbaba78d (diff)
downloadblt-5b44fb0d6530c4ff66a446afb69933aa8ffd014f.zip
blt-5b44fb0d6530c4ff66a446afb69933aa8ffd014f.tar.gz
blt-5b44fb0d6530c4ff66a446afb69933aa8ffd014f.tar.bz2
Merge commit '23c7930d27fe11c4655e1291a07a821dbbaba78d' as 'funtools'
Diffstat (limited to 'funtools/faq/faq1.html')
-rw-r--r--funtools/faq/faq1.html39
1 files changed, 39 insertions, 0 deletions
diff --git a/funtools/faq/faq1.html b/funtools/faq/faq1.html
new file mode 100644
index 0000000..d4f1fd8
--- /dev/null
+++ b/funtools/faq/faq1.html
@@ -0,0 +1,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>