2004-03-02 03:46:04 +00:00
|
|
|
<?
|
2003-08-28 07:56:35 +00:00
|
|
|
require_once("docutil.php");
|
2003-10-13 19:23:40 +00:00
|
|
|
page_head("Building the BOINC core client");
|
2004-03-02 03:46:04 +00:00
|
|
|
echo "
|
|
|
|
<p>
|
|
|
|
It may not be necessary to build the core client;
|
|
|
|
you can get executables for many platforms at
|
|
|
|
<a href=http://boinc.berkeley.edu>http://boinc.berkeley.edu</a>.
|
|
|
|
<p>
|
|
|
|
See the <a href=software.php>Software Prerequisites</a>.
|
2003-08-28 07:56:35 +00:00
|
|
|
|
2004-03-02 03:46:04 +00:00
|
|
|
<h3>Unix, Mac OS/X</h3>
|
|
|
|
<p>
|
|
|
|
<pre>
|
|
|
|
cd boinc/client
|
|
|
|
make
|
|
|
|
</pre>
|
|
|
|
The final target is <code>boinc/client/boinc_VERSION_PLATFORM.gz</code>.
|
2003-08-28 07:56:35 +00:00
|
|
|
|
2004-03-02 03:46:04 +00:00
|
|
|
<h3>Windows</h3>
|
2003-08-28 07:56:35 +00:00
|
|
|
|
2004-03-02 03:46:04 +00:00
|
|
|
<p>
|
|
|
|
Open boinc.dsw (MSVC6) or boinc.sln (MSVC7).
|
|
|
|
Build either the Release or Debug version.
|
|
|
|
This should also build libraries and screensaver.
|
2003-08-28 07:56:35 +00:00
|
|
|
|
2004-03-02 03:46:04 +00:00
|
|
|
";
|
2003-08-28 07:56:35 +00:00
|
|
|
page_tail();
|
|
|
|
?>
|