2003-08-22 21:54:47 +00:00
|
|
|
<? // -*- html -*-
|
|
|
|
// $Id$
|
|
|
|
require_once("docutil.php");
|
|
|
|
page_head("Building the server");
|
|
|
|
?>
|
|
|
|
|
2003-08-28 07:43:57 +00:00
|
|
|
See the <a href=software.php>Software Prerequisites</a>.
|
|
|
|
|
2003-08-22 21:54:47 +00:00
|
|
|
<h1>Overview</h1>
|
|
|
|
Download:
|
|
|
|
<pre>
|
2003-08-22 22:24:12 +00:00
|
|
|
wget http://boinc.berkeley.edu/source/boinc-VERSION.tar.gz
|
|
|
|
tar xvzf boinc-VERSION.tar.gz
|
|
|
|
cd boinc-VERSION
|
2003-08-22 21:54:47 +00:00
|
|
|
</pre>
|
|
|
|
Configure:
|
|
|
|
<pre>
|
|
|
|
./configure
|
|
|
|
</pre>
|
|
|
|
Make:
|
|
|
|
<pre>
|
|
|
|
make
|
|
|
|
</pre>
|
2003-08-28 07:43:57 +00:00
|
|
|
Check:
|
|
|
|
<pre>
|
|
|
|
make check
|
|
|
|
</pre>
|
2003-08-22 21:54:47 +00:00
|
|
|
|
|
|
|
<h1>Troubleshooting</h1>
|
|
|
|
<h2>MySQL</h2> BOINC gets MySQL compiler and linker flags from a program
|
|
|
|
called <code>mysql_config</code> which comes with your MySQL distribution.
|
|
|
|
This sometimes references libraries that are not part of your base system
|
|
|
|
installation, such as <code>-lnsl</code> or <code>-lnss_files</code>. You may
|
2003-08-22 22:24:12 +00:00
|
|
|
need to install additional packages (often you can use something called
|
|
|
|
"mysql-dev" or "mysql-devel") or fiddle with Makefiles.
|
2003-08-22 21:54:47 +00:00
|
|
|
|
|
|
|
<?
|
|
|
|
page_tail();
|
|
|
|
?>
|